Damage effect fix.

This commit is contained in:
Steve 2016-05-06 11:34:25 +01:00
parent 2e8edd210a
commit 4293f09b10
1 changed files with 1 additions and 1 deletions

View File

@ -467,7 +467,7 @@ void damageFighter(Entity *e, int amount, long flags)
}
}
if (amount >= 0)
if (amount > 0)
{
e->health -= amount;
e->armourHit = 255;