From 94ceb87517474ac372a41a52a3448104f51435bf Mon Sep 17 00:00:00 2001 From: pauldubois Date: Mon, 14 Apr 2008 07:35:39 +0000 Subject: Quiver work: + bug: if wield sling and no quiver, then pick up stones: should quiver + implement: save and load (does not break saves) + remove: fire_quiver_best + remove: you.quiver + bug: identifying items doesn't update quiver properly + rename: you.quiver_change -> you.redraw_quiver + test no item because of =f git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4227 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/output.cc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/output.cc') 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; -- cgit v1.2.3-54-g00ecf