v2.4.0: fixed DM-300 HP thresholds using < instead of <=
This commit is contained in:
@@ -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();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user