From 77998ff25b4d47d497398a995da995be5203e241 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 6 Jun 2021 13:31:57 -0400 Subject: [PATCH] v0.9.3: fixed wild magic not setting hero to busy --- .../actors/hero/abilities/mage/WildMagic.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/abilities/mage/WildMagic.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/abilities/mage/WildMagic.java index 44c0dd9ca..4867d1194 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/abilities/mage/WildMagic.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/abilities/mage/WildMagic.java @@ -62,6 +62,8 @@ public class WildMagic extends ArmorAbility { return; } + hero.busy(); + ArrayList wands = hero.belongings.getAllItems(Wand.class); Random.shuffle(wands);