summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/monstuff.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/crawl-ref/source/monstuff.cc b/crawl-ref/source/monstuff.cc
index d19d84e943..c67df32f00 100644
--- a/crawl-ref/source/monstuff.cc
+++ b/crawl-ref/source/monstuff.cc
@@ -658,7 +658,7 @@ void monster_die(monsters *monster, killer_type killer, int i, bool silent)
!silent && mons_near(monster) && player_monster_visible(monster);
bool in_transit = false;
const bool hard_reset = testbits(monster->flags, MF_HARD_RESET);
- const bool drop_items = !hard_reset;
+ bool drop_items = !hard_reset;
const bool gives_xp = !monster->has_ench(ENCH_ABJ);
#ifdef DGL_MILESTONES
@@ -839,9 +839,13 @@ void monster_die(monsters *monster, killer_type killer, int i, bool silent)
did_god_conduct(DID_KILL_PRIEST,
monster->hit_dice, true, monster);
+ // Holy beings take their gear with them when they die.
if (mons_is_holy(monster))
+ {
did_god_conduct(DID_KILL_HOLY, monster->hit_dice,
true, monster);
+ drop_items = false;
+ }
if (was_neutral)
did_god_conduct(DID_KILL_NEUTRAL, monster->hit_dice,