v0.9.0: fixed aqua blast occasionally not stunning targets

This commit is contained in:
Evan Debenham 2020-09-04 22:00:25 -04:00
parent dc4b05be43
commit 35ea6504b7

View File

@ -56,7 +56,7 @@ public class AquaBlast extends TargetedSpell {
if (target != null && target != hero){ if (target != null && target != hero){
//just enough to skip their current turn //just enough to skip their current turn
Buff.affect(target, Paralysis.class, 0f); Buff.affect(target, Paralysis.class, target.cooldown());
} }
} }