diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/DM300.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/DM300.java index 6b2171e6f..dae5dc08f 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/DM300.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/DM300.java @@ -489,7 +489,7 @@ public class DM300 extends Mob { threshold = HT / 3 * (2 - pylonsActivated); } - if (HP <= threshold && HP > 0){ + if (HP <= threshold && threshold > 0){ HP = threshold; supercharge(); }