summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authordploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-06 09:47:35 +0000
committerdploog <dploog@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-06 09:47:35 +0000
commitb2ea4771ba60b92574d31a7cbb628323a5eb8897 (patch)
treebfd9be05be9e8fdc4d1215a3701c6c6074079769 /crawl-ref/source/output.cc
parenta12e4ade3eaf8cd0555456710f1aa6a86cd97933 (diff)
downloadcrawl-ref-b2ea4771ba60b92574d31a7cbb628323a5eb8897.tar.gz
crawl-ref-b2ea4771ba60b92574d31a7cbb628323a5eb8897.zip
Fix BR 1986191: Stealth output for @ still used the old thresholds and
adjectives. Ideally, we would only have one list instead of two. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5498 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc20
1 files changed, 11 insertions, 9 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 216aad8293..4d9606fc77 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2443,15 +2443,17 @@ std::string _status_mut_abilities()
const int ustealth = check_stealth();
snprintf( info, INFO_SIZE, "%sstealthy",
- (ustealth < 10) ? "extremely un" :
- (ustealth < 20) ? "very un" :
- (ustealth < 30) ? "un" :
- (ustealth < 50) ? "fairly " :
- (ustealth < 80) ? "" :
- (ustealth < 120) ? "quite " :
- (ustealth < 160) ? "very " :
- (ustealth < 200) ? "extremely "
- : "incredibly " );
+ (ustealth < 10) ? "extremely un" :
+ (ustealth < 30) ? "very un" :
+ (ustealth < 60) ? "un" :
+ (ustealth < 90) ? "fairly " :
+ (ustealth < 120) ? "" :
+ (ustealth < 160) ? "quite " :
+ (ustealth < 220) ? "very " :
+ (ustealth < 300) ? "extremely " :
+ (ustealth < 400) ? "extraordinarily " :
+ (ustealth < 520) ? "incredibly "
+ : "uncannily ");
text += info;