summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-18 10:39:07 -0600
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-11-18 10:39:07 -0600
commit4e8f694dc3dd0db8d2613652069ae9d3faa222c6 (patch)
tree391d3937e1f467883047bfbfe35bc7b2dc990459
parent7bbb133d0b968172cdb16e9bc41a361761c57897 (diff)
downloadcrawl-ref-4e8f694dc3dd0db8d2613652069ae9d3faa222c6.tar.gz
crawl-ref-4e8f694dc3dd0db8d2613652069ae9d3faa222c6.zip
Make TSO take kills of MH_NATURAL monsters with unholy spells again.
-rw-r--r--crawl-ref/source/mon-stuff.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-stuff.cc b/crawl-ref/source/mon-stuff.cc
index a2c2f9ac5a..030d5e0a0c 100644
--- a/crawl-ref/source/mon-stuff.cc
+++ b/crawl-ref/source/mon-stuff.cc
@@ -1638,7 +1638,7 @@ int monster_die(monsters *monster, killer_type killer,
did_god_conduct(DID_KILL_LIVING,
monster->hit_dice, true, monster);
- if (monster->is_evil())
+ if (monster->is_unholy() || monster->is_evil())
{
did_god_conduct(DID_KILL_NATURAL_EVIL,
monster->hit_dice, true, monster);