diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/remains/SealShard.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/remains/SealShard.java index 4d96fb509..05d62acd7 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/remains/SealShard.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/items/remains/SealShard.java @@ -39,7 +39,7 @@ public class SealShard extends RemainsItem { @Override protected void doEffect(Hero hero) { Buff.affect(hero, Barrier.class).incShield(Math.round(hero.HT/5f)); - hero.sprite.showStatusWithIcon( CharSprite.POSITIVE, Integer.toString(hero.HT/10), FloatingText.SHIELDING ); + hero.sprite.showStatusWithIcon( CharSprite.POSITIVE, Integer.toString(Math.round(hero.HT/5f)), FloatingText.SHIELDING ); Sample.INSTANCE.play(Assets.Sounds.UNLOCK); }