From 35ea6504b7c247dc216b48cce6c898b147d3bacf Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 4 Sep 2020 22:00:25 -0400 Subject: [PATCH] v0.9.0: fixed aqua blast occasionally not stunning targets --- .../shatteredpixeldungeon/items/spells/AquaBlast.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/AquaBlast.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/AquaBlast.java index 55303ed2f..81ef80b36 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/AquaBlast.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/AquaBlast.java @@ -56,7 +56,7 @@ public class AquaBlast extends TargetedSpell { if (target != null && target != hero){ //just enough to skip their current turn - Buff.affect(target, Paralysis.class, 0f); + Buff.affect(target, Paralysis.class, target.cooldown()); } }