From a30fba15b39b05a5b430baf0955ebb52ef8d778a Mon Sep 17 00:00:00 2001 From: nhmall Date: Sat, 6 Apr 2019 09:34:15 -0400 Subject: [PATCH] Merge branch 'NetHack-3.6.2' part 2 06-Apr-2019 --- src/botl.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/botl.c b/src/botl.c index 19aaaee76..274035d24 100644 --- a/src/botl.c +++ b/src/botl.c @@ -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