v2.4.0: fixed recent DM-300 change causing an extra pylon activation

This commit is contained in:
Evan Debenham
2024-05-13 12:45:26 -04:00
parent 55950ce6a3
commit dded8c981a

View File

@@ -489,7 +489,7 @@ public class DM300 extends Mob {
threshold = HT / 3 * (2 - pylonsActivated);
}
if (HP <= threshold){
if (HP <= threshold && HP > 0){
HP = threshold;
supercharge();
}