diff --git a/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndHero.java b/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndHero.java index fac38dc54..9179e1adf 100644 --- a/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndHero.java +++ b/src/com/shatteredpixel/shatteredpixeldungeon/windows/WndHero.java @@ -130,7 +130,7 @@ public class WndHero extends WndTabbed { pos = btnCatalogs.bottom() + GAP; statSlot( Messages.get(this, "str"), hero.STR() ); - statSlot( Messages.get(this, "health"), hero.HP + "/" + hero.HT ); + statSlot( Messages.get(this, "health"), (hero.HP + hero.SHLD) + "/" + hero.HT ); statSlot( Messages.get(this, "exp"), hero.exp + "/" + hero.maxExp() ); pos += GAP;