From ce6317b8639f24aacf1f4b3f9781876a262ae0f8 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Fri, 7 Feb 2025 11:26:40 -0500 Subject: [PATCH] v3.0.0: fixed debug code causing spirit form to cost 0 charge --- .../shatteredpixeldungeon/actors/hero/spells/SpiritForm.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/SpiritForm.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/SpiritForm.java index f74b54c8f..0eda8fdce 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/SpiritForm.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/actors/hero/spells/SpiritForm.java @@ -77,7 +77,7 @@ public class SpiritForm extends ClericSpell { @Override public float chargeUse(Hero hero) { - return 0; + return 4; } @Override