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.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc
index ff9a0134c4..b3a0ba7522 100644
--- a/crawl-ref/source/monster.cc
+++ b/crawl-ref/source/monster.cc
@@ -3138,8 +3138,11 @@ bool monsters::is_unclean() const
bool monsters::is_chaotic() const
{
- if (type == MONS_UGLY_THING || type == MONS_VERY_UGLY_THING)
+ if (type == MONS_UGLY_THING || type == MONS_VERY_UGLY_THING
+ || type == MONS_CRAZY_YIUF)
+ {
return (true);
+ }
if (is_shapeshifter())
return (true);