summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-18 16:33:58 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-18 16:33:58 +0000
commit324735e9daf24291e48a2bda190a4a9d7cfb29cf (patch)
treec1e182a8aa7e3fb6cc0bef471ff01b9931155997 /crawl-ref/source/monstuff.cc
parent8f96a48c5518cbf95c2dcc0394f532637b727123 (diff)
downloadcrawl-ref-324735e9daf24291e48a2bda190a4a9d7cfb29cf.tar.gz
crawl-ref-324735e9daf24291e48a2bda190a4a9d7cfb29cf.zip
When indicating monsters' wounds, Actually display the "horribly
wounded." message, at the midpoint between the "heavily wounded" and "almost dead" messages. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5122 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index d4129a45d0..2973a9a4f3 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -1930,7 +1930,7 @@ void mons_get_damage_level(
return;
}
- if (monster->hit_points <= monster->max_hit_points / 6)
+ if (monster->hit_points <= monster->max_hit_points / 4)
{
desc += "horribly ";
dam_level = MDAM_HORRIBLY_DAMAGED;