v0.3.5: hero window now accounts for shielding

This commit is contained in:
Evan Debenham 2016-04-10 14:50:00 -04:00
parent 22b91231fc
commit 4f9191b97b

View File

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