summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/mon-util.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-util.cc b/crawl-ref/source/mon-util.cc
index c4bf5d89ac..091b3d5089 100644
--- a/crawl-ref/source/mon-util.cc
+++ b/crawl-ref/source/mon-util.cc
@@ -2007,7 +2007,7 @@ void define_monster(monsters &mons)
static std::string _ugly_thing_colour_name(const monsters *mon)
{
- if (mons_genus(mon->type) != MONS_UGLY_THING)
+ if (mon->type != MONS_UGLY_THING && mon->type != MONS_VERY_UGLY_THING)
return ("buggy");
switch (make_low_colour(mon->colour))