v0.9.1c: fixed DM-300 rarely using abilities while stunned

This commit is contained in:
Evan Debenham 2021-01-10 17:09:54 -05:00
parent 5467883a69
commit e01818ceb2

View File

@ -156,6 +156,10 @@ public class NewDM300 extends Mob {
@Override
protected boolean act() {
if (paralysed > 0){
return super.act();
}
//ability logic only triggers if DM is not supercharged
if (!supercharged){
if (turnsSinceLastAbility >= 0) turnsSinceLastAbility++;