summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/misc.cc
diff options
context:
space:
mode:
authorStefan O'Rear <stefanor@cox.net>2009-11-04 03:06:44 -0800
committerStefan O'Rear <stefanor@cox.net>2009-11-04 03:06:44 -0800
commit124ff384cea5028efdab2ea72eb5ce50cf67308b (patch)
treeded2547cfeb601aca3037d7e01b1862c553d822e /crawl-ref/source/misc.cc
parentea687500286be0d4a5c582de4d2347d11c197dbe (diff)
downloadcrawl-ref-124ff384cea5028efdab2ea72eb5ce50cf67308b.tar.gz
crawl-ref-124ff384cea5028efdab2ea72eb5ce50cf67308b.zip
Fix player bloodspatter
Diffstat (limited to 'crawl-ref/source/misc.cc')
-rw-r--r--crawl-ref/source/misc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/misc.cc b/crawl-ref/source/misc.cc
index 94603039d3..cf6f450c24 100644
--- a/crawl-ref/source/misc.cc
+++ b/crawl-ref/source/misc.cc
@@ -1136,7 +1136,7 @@ void bleed_onto_floor(const coord_def& where, monster_type montype,
if (montype == MONS_PLAYER && !you.can_bleed())
return;
- if (montype != NUM_MONSTERS)
+ if (montype != NUM_MONSTERS && montype != MONS_PLAYER)
{
monsters m;
m.type = montype;