Skip to content

Commit

Permalink
v0.9.1c: fixed DM-300 rarely using abilities while stunned
Browse files Browse the repository at this point in the history
  • Loading branch information
00-Evan committed Jan 13, 2021
1 parent 5467883 commit e01818c
Showing 1 changed file with 4 additions and 0 deletions.
Expand Up @@ -156,6 +156,10 @@ public void restoreFromBundle(Bundle bundle) {
@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++;
Expand Down

0 comments on commit e01818c

Please sign in to comment.