summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-15 17:37:01 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2008-08-15 17:37:01 +0000
commit5eee0ee90369686245490f09532d6c6e224bab7a (patch)
tree5e4ae8a1edf0fa83c9fe22c2c70fab51807236ca
parent5754ed018e6b1611d7e4fc85a6b85836301966b2 (diff)
downloadcrawl-ref-5eee0ee90369686245490f09532d6c6e224bab7a.tar.gz
crawl-ref-5eee0ee90369686245490f09532d6c6e224bab7a.zip
Trunk->0.4 r6817: Fixed demonspawn getting free protection from torment/draining (jarpiain).
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.4@6818 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/mon-util.cc7
1 files changed, 6 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index 3b07256850..737c0ea63d 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -2450,7 +2450,12 @@ bool ms_waste_of_time( const monsters *mon, spell_type monspell )
// that'll mean monsters can just "know" the player is fully
// life-protected if he has triple life protection.
const mon_holy_type holiness = foe->holiness();
- return (holiness == MH_UNDEAD || holiness == MH_DEMONIC
+ return (holiness == MH_UNDEAD
+ // Demons, but not demonspawn - demonspawn will show
+ // up as demonic for purposes of things like holy
+ // wrath, but are still (usually) susceptible to
+ // torment and draining.
+ || (holiness == MH_DEMONIC && foe != &you)
|| holiness == MH_NONLIVING || holiness == MH_PLANT);
}