summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-abil.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-05-22 22:54:14 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-05-23 04:34:39 -0400
commit6a78101f5843d6df5374763660956d405bfc2f04 (patch)
treedcd7a2ad36da645883e202e5a4bfebe0d85015fb /crawl-ref/source/mon-abil.cc
parent22bbcf646e8763312d93c04b0be234909b9757a1 (diff)
downloadcrawl-ref-6a78101f5843d6df5374763660956d405bfc2f04.tar.gz
crawl-ref-6a78101f5843d6df5374763660956d405bfc2f04.zip
Let Cherubs buff higher HD holies (wheals)
Hopefully acutally letting Cherubs use their special ability will show if they should be removed or not.
Diffstat (limited to 'crawl-ref/source/mon-abil.cc')
-rw-r--r--crawl-ref/source/mon-abil.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/mon-abil.cc b/crawl-ref/source/mon-abil.cc
index 887949d793..b0ed6e2b9d 100644
--- a/crawl-ref/source/mon-abil.cc
+++ b/crawl-ref/source/mon-abil.cc
@@ -1154,11 +1154,12 @@ static int _battle_cry(monster* chief, battlecry_type type)
if (*mi != chief
&& _is_battlecry_compatible(*mi, type)
&& mons_aligned(chief, *mi)
- && mi->hit_dice < chief->hit_dice
&& !mi->berserk_or_insane()
&& !mi->has_ench(ENCH_MIGHT)
&& !mi->cannot_move()
- && !mi->confused())
+ && !mi->confused()
+ && (mi->hit_dice < chief->hit_dice
+ || BATTLECRY_CHERUB_HYMN))
{
mon_enchant ench = mi->get_ench(battlecry);
if (ench.ench == ENCH_NONE || ench.degree < level)