From 5a6ffd39b8ba9bba30ae54dd4e2b1a93b8764583 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 4 Jan 2026 11:31:00 -0500 Subject: [PATCH] v3.3.2: fixed targeted spells calling onSpellUsed twice (oops!) --- .../shatteredpixeldungeon/items/spells/TargetedSpell.java | 1 - 1 file changed, 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/TargetedSpell.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/TargetedSpell.java index 2353cefdf..cf08f21a2 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/TargetedSpell.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/spells/TargetedSpell.java @@ -104,7 +104,6 @@ public abstract class TargetedSpell extends Spell { curSpell.fx(shot, new Callback() { public void call() { curSpell.affectTarget(shot, curUser); - curSpell.onSpellused(); } });