summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authorDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-08 06:46:07 -0500
committerDavid Lawrence Ramsey <dolorous@users.sourceforge.net>2009-10-08 06:46:07 -0500
commit3b9a193c883f8c0f8cd36415002da249fae18c14 (patch)
treea29cd790cef8446200d8097cc24c89d654230532 /crawl-ref
parente50e6c03a09fc3db26ad92002f10489b83f261df (diff)
downloadcrawl-ref-3b9a193c883f8c0f8cd36415002da249fae18c14.tar.gz
crawl-ref-3b9a193c883f8c0f8cd36415002da249fae18c14.zip
Simplify.
Diffstat (limited to 'crawl-ref')
-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))