From 2628ba2c3dd987770afadde44a15ecd6b8e4de84 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Thu, 7 Nov 2024 15:16:10 -0500 Subject: [PATCH] v3.0.0: fixed incorrect healing text on cursed wand HP transfer --- .../shatteredpixeldungeon/items/wands/CursedWand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/CursedWand.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/CursedWand.java index f41a3baca..cd4395811 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/CursedWand.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/wands/CursedWand.java @@ -487,7 +487,7 @@ public class CursedWand { } toHeal.HP = Math.min(toHeal.HT, toHeal.HP + damage/2); toHeal.sprite.emitter().burst(Speck.factory(Speck.HEALING), 3); - toHeal.sprite.showStatusWithIcon( CharSprite.POSITIVE, Integer.toString(damage), FloatingText.HEALING ); + toHeal.sprite.showStatusWithIcon( CharSprite.POSITIVE, Integer.toString(damage/2), FloatingText.HEALING ); toDamage.damage(damage, new CursedWand()); toDamage.sprite.emitter().start(ShadowParticle.UP, 0.05f, 10);