summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monster.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monster.cc')
-rw-r--r--crawl-ref/source/monster.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc
index 7f5a262627..9de8e7d9df 100644
--- a/crawl-ref/source/monster.cc
+++ b/crawl-ref/source/monster.cc
@@ -1251,6 +1251,9 @@ static bool _is_signature_weapon(monsters *monster, const item_def &weapon)
if (weapon.base_type != OBJ_WEAPONS)
return (false);
+ if (monster->type == MONS_ANGEL)
+ return (weapon.sub_type == WPN_HOLY_SCOURGE);
+
if (monster->type == MONS_DAEVA)
return (weapon.sub_type == WPN_BLESSED_EUDEMON_BLADE);