summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index d73034ad88..098fab8ca7 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -838,13 +838,13 @@ void print_stats(void)
_print_stats_wp(10);
}
- if (you.quiver_change || you.wield_change)
+ if (you.redraw_quiver || you.wield_change)
{
_print_stats_qv(11);
}
you.wield_change = false;
- you.quiver_change = false;
+ you.redraw_quiver = false;
if (you.redraw_status_flags & REDRAW_LINE_1_MASK)
_print_stats_line1(12);
@@ -1058,6 +1058,7 @@ monster_pane_info::to_string(
//out << " (friendly)";
desc_color = GREEN;
break;
+ case ATT_GOOD_NEUTRAL:
case ATT_NEUTRAL:
//out << " (neutral)";
desc_color = BROWN;