summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/message.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-19 22:09:24 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-19 22:09:24 +0000
commit8652a617b240063e6466e778f942adfd0a7cc215 (patch)
treedbc8ac8f929ef6a10d845f77edcd3cb28753f87a /crawl-ref/source/message.cc
parent1c720433509df9bf95daf49ee505c0d2c1d1f61b (diff)
downloadcrawl-ref-8652a617b240063e6466e778f942adfd0a7cc215.tar.gz
crawl-ref-8652a617b240063e6466e778f942adfd0a7cc215.zip
Fix [1967456]: Change "horribly wounded" to "severely wounded".
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5143 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/message.cc')
-rw-r--r--crawl-ref/source/message.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/message.cc b/crawl-ref/source/message.cc
index ed19b159ee..90dcb3ea95 100644
--- a/crawl-ref/source/message.cc
+++ b/crawl-ref/source/message.cc
@@ -302,7 +302,7 @@ int channel_to_colour( msg_channel_type channel, int param )
case MSGCH_MONSTER_DAMAGE:
ret = ((param == MDAM_DEAD) ? RED :
- (param >= MDAM_HORRIBLY_DAMAGED) ? LIGHTRED :
+ (param >= MDAM_SEVERELY_DAMAGED) ? LIGHTRED :
(param >= MDAM_MODERATELY_DAMAGED) ? YELLOW
: LIGHTGREY);
break;