diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java b/src/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java index b2189d863..f9b7632fb 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/actors/Char.java @@ -232,7 +232,7 @@ public abstract class Char extends Actor { public void damage( int dmg, Object src ) { - if (HP <= 0 || dmg < 0) { + if (!isAlive() || dmg < 0) { return; } if (this.buff(Frost.class) != null){