summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monstuff.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-26 21:40:38 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-04-26 21:40:38 +0000
commit50459dd6e21af722b017ab2cad4817e015fe4d1b (patch)
treed9b99306c2c72a2dfe15a60175f65423e13c0203 /crawl-ref/source/monstuff.cc
parent9500cfc373e96320602216b95b7bc549b2cf9960 (diff)
downloadcrawl-ref-50459dd6e21af722b017ab2cad4817e015fe4d1b.tar.gz
crawl-ref-50459dd6e21af722b017ab2cad4817e015fe4d1b.zip
Clean up death message handling for abjured spatial and fire vortexes
(if there ever are any). git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@4679 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/monstuff.cc')
-rw-r--r--crawl-ref/source/monstuff.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index 3b5e30481c..ec07915f09 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -814,6 +814,9 @@ void monster_die(monsters *monster, killer_type killer, int i, bool silent)
place_cloud(CLOUD_FIRE, monster->x, monster->y, 2 + random2(4),
monster->kill_alignment());
}
+
+ if (killer == KILL_RESET)
+ killer = KILL_DISMISSED;
}
else if (monster->type == MONS_SIMULACRUM_SMALL
|| monster->type == MONS_SIMULACRUM_LARGE)