summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-06 05:56:50 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2007-03-06 05:56:50 +0000
commitbd1d91f4b91afaf8dd80c329c78b775f43382b87 (patch)
tree38c0cfd9f7268aa1eeb200e19996f63bf24f62b9 /crawl-ref/source/output.cc
parent7cd64c37c6b36806e99e92e59581447c9b91560a (diff)
downloadcrawl-ref-bd1d91f4b91afaf8dd80c329c78b775f43382b87.tar.gz
crawl-ref-bd1d91f4b91afaf8dd80c329c78b775f43382b87.zip
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
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc10
1 files changed, 7 insertions, 3 deletions
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 "<lightgreen>";
+ return "<lightgreen>";
case 1:
return "<green>";
case -1: