summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-08 07:52:10 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-01-08 07:52:10 +0000
commit081fdf88cc165fd264793b8180c5d10314615c41 (patch)
treec612b68e8ed21576a5dccf00729f0cca219c733d /crawl-ref
parent317ed72d9c13b94bb069e7de2d128339aa7ad555 (diff)
downloadcrawl-ref-081fdf88cc165fd264793b8180c5d10314615c41.tar.gz
crawl-ref-081fdf88cc165fd264793b8180c5d10314615c41.zip
Removed 'considerably' from MR adjectives list (Darshan.)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@801 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/player.cc7
1 files changed, 3 insertions, 4 deletions
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index 5fe3a6c35d..5915d6877a 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -3122,10 +3122,9 @@ void display_char_status(void)
const int mr = player_res_magic();
snprintf(info, INFO_SIZE, "You are %s resistant to magic.",
(mr < 10) ? "not" :
- (mr < 25) ? "slightly" :
- (mr < 50) ? "somewhat" :
- (mr < 75) ? "considerably" :
- (mr < 100) ? "quite" :
+ (mr < 30) ? "slightly" :
+ (mr < 60) ? "somewhat" :
+ (mr < 90) ? "quite" :
(mr < 120) ? "very" :
(mr < 140) ? "extremely" :
"incredibly");