From 495488026f1c0270176b9e27f228a6bf91c1d085 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 12 May 2024 12:04:51 -0400 Subject: [PATCH] v2.4.0: fixed DM-300 HP thresholds using < instead of <= --- .../shatteredpixel/shatteredpixeldungeon/actors/mobs/DM300.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); }