v3.0.1: fixed incorrect barrier text in seal shard

This commit is contained in:
Evan Debenham
2025-03-05 15:58:37 -05:00
parent 6bf5c9643a
commit a43166fc69

View File

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