From 4f9191b97b515d1b2a53c1a74738d0ad61cbf82d Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 10 Apr 2016 14:50:00 -0400 Subject: [PATCH] v0.3.5: hero window now accounts for shielding --- .../shatteredpixel/shatteredpixeldungeon/windows/WndHero.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;