From e01818ceb26878d0a174fc6382cf4c17f931ac00 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 10 Jan 2021 17:09:54 -0500 Subject: [PATCH] v0.9.1c: fixed DM-300 rarely using abilities while stunned --- .../shatteredpixeldungeon/actors/mobs/NewDM300.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/NewDM300.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/NewDM300.java index f04be9534..a8820b991 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/NewDM300.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/mobs/NewDM300.java @@ -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++;