v2.4.0: fixed DM-300 HP thresholds using < instead of <=

This commit is contained in:
Evan Debenham
2024-05-12 12:04:51 -04:00
parent 4a9a48d23f
commit 495488026f
@@ -489,7 +489,7 @@ public class DM300 extends Mob {
threshold = HT / 3 * (2 - pylonsActivated); threshold = HT / 3 * (2 - pylonsActivated);
} }
if (HP < threshold){ if (HP <= threshold){
HP = threshold; HP = threshold;
supercharge(); supercharge();
} }