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 fd368a23d..f64f0e5b3 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){ + if (HP <= threshold){ HP = threshold; supercharge(); }