summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-info.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2014-01-21 21:37:49 -0700
committerSteve Melenchuk <smelenchuk@gmail.com>2014-01-21 22:11:39 -0700
commit8bc706802c50f52f86bc38b2782b8701be4e0763 (patch)
tree79d4c9db0ee26d74e79c3c8c65bf89555f9a3cc4 /crawl-ref/source/mon-info.cc
parent2cf8d755b10f8c80412351ebfb424485cc82f3d9 (diff)
downloadcrawl-ref-8bc706802c50f52f86bc38b2782b8701be4e0763.tar.gz
crawl-ref-8bc706802c50f52f86bc38b2782b8701be4e0763.zip
Group demonspawn in monster display like draconians.
Diffstat (limited to 'crawl-ref/source/mon-info.cc')
-rw-r--r--crawl-ref/source/mon-info.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/mon-info.cc b/crawl-ref/source/mon-info.cc
index bc80eaa4eb..b551c12564 100644
--- a/crawl-ref/source/mon-info.cc
+++ b/crawl-ref/source/mon-info.cc
@@ -1335,6 +1335,8 @@ string monster_info::pluralised_name(bool fullname) const
return "mimics";
else if (mons_genus(type) == MONS_DRACONIAN)
return pluralise(mons_type_name(MONS_DRACONIAN, DESC_PLAIN));
+ else if (mons_genus(type) == MONS_DEMONSPAWN)
+ return pluralise(mons_type_name(MONS_DEMONSPAWN, DESC_PLAIN));
else if (type == MONS_UGLY_THING || type == MONS_VERY_UGLY_THING
|| type == MONS_DANCING_WEAPON || !fullname)
{