diff --git a/src/battle/fighters.c b/src/battle/fighters.c index 30d2d62..f58c067 100644 --- a/src/battle/fighters.c +++ b/src/battle/fighters.c @@ -467,7 +467,7 @@ void damageFighter(Entity *e, int amount, long flags) } } - if (amount >= 0) + if (amount > 0) { e->health -= amount; e->armourHit = 255;