From 124ff384cea5028efdab2ea72eb5ce50cf67308b Mon Sep 17 00:00:00 2001 From: Stefan O'Rear Date: Wed, 4 Nov 2009 03:06:44 -0800 Subject: Fix player bloodspatter --- crawl-ref/source/misc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/misc.cc') 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; -- cgit v1.2.3-54-g00ecf