Merge branch 'NetHack-3.6.2' part 2 06-Apr-2019

This commit is contained in:
nhmall
2019-04-06 09:34:15 -04:00
parent add4540ba9
commit a30fba15b3

View File

@@ -1272,7 +1272,7 @@ stat_cap_indx()
int cap;
#ifdef STATUS_HILITES
cap = blstats[now_or_before_idx][BL_CAP].a.a_int;
cap = g.blstats[g.now_or_before_idx][BL_CAP].a.a_int;
#else
cap = near_capacity();
#endif
@@ -1287,7 +1287,7 @@ stat_hunger_indx()
int uhs;
#ifdef STATUS_HILITES
uhs = blstats[now_or_before_idx][BL_HUNGER].a.a_int;
uhs = g.blstats[g.now_or_before_idx][BL_HUNGER].a.a_int;
#else
uhs = (int) u.uhs;
#endif