Sil v1.0 bugs

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mtadd
    Rookie
    • Nov 2011
    • 24

    Sil v1.0 bugs

    I've looked around online for an issue tracker for Sil, but haven't found one, so I've started this thread here. Here's a really easy one, and I wouldn't be surprised if you've already noticed it, but when you do exactly 10 damage to a creature, it doesn't display the "1" (ten's digit). In cmd1.c display_hit() line 3072, you'll see

    Code:
       if(net_dam > 10) print_rel(...,
    which should be

    Code:
       if(net_dam >= 10) print_rel(...
  • half
    Knight
    • Jan 2009
    • 910

    #2
    Originally posted by mtadd
    Code:
       if(net_dam > 10) print_rel(...,
    which should be

    Code:
       if(net_dam >= 10) print_rel(...
    Thanks for that! A pretty embarrassing bug this one...

    Comment

    Working...
    😀
    😂
    🥰
    😘
    🤢
    😎
    😞
    😡
    👍
    👎