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);