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
which should be
Code:
if(net_dam > 10) print_rel(...,
Code:
if(net_dam >= 10) print_rel(...
Comment