From bd1d91f4b91afaf8dd80c329c78b775f43382b87 Mon Sep 17 00:00:00 2001 From: dshaligram Date: Tue, 6 Mar 2007 05:56:50 +0000 Subject: Kill hard tabs. redraw_dexterity now implies redraw_evasion. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@987 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/output.cc | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/output.cc') diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc index 21f79e82e7..154fea9e56 100644 --- a/crawl-ref/source/output.cc +++ b/crawl-ref/source/output.cc @@ -83,6 +83,10 @@ void print_stats(void) { textcolor(LIGHTGREY); + // Displayed evasion is now tied to dex. + if (you.redraw_dexterity) + you.redraw_evasion = true; + if (you.redraw_hit_points) { const int max_max_hp = you.hp_max + player_rotted(); @@ -609,8 +613,8 @@ const char* itosym3(int stat) (stat == 2) ? "+ + ." : (stat == 1) ? "+ . ." : (stat == 0) ? ". . ." : - (stat == -1) ? "x . ." : - (stat == -2) ? "x x ." : + (stat == -1) ? "x . ." : + (stat == -2) ? "x x ." : "x x x"); } @@ -651,7 +655,7 @@ static const char* determine_color_string( int level ) { switch ( level ) { case 3: case 2: - return ""; + return ""; case 1: return ""; case -1: -- cgit v1.2.3-54-g00ecf