summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libutil.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-05-13 14:19:11 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-05-13 21:08:36 -0400
commit12223c06ef9274e1b90c86d4c6a8ebd9f813c66a (patch)
treeac71d6e58668844f1ce17905d76901f19e640ce3 /crawl-ref/source/libutil.cc
parent8e1b8955197c90e724290fb66c5842639f659b8f (diff)
downloadcrawl-ref-12223c06ef9274e1b90c86d4c6a8ebd9f813c66a.tar.gz
crawl-ref-12223c06ef9274e1b90c86d4c6a8ebd9f813c66a.zip
Remove Shedu
They never really worked as enemies - their only unique aspect, partner resurrection, was just annoying.
Diffstat (limited to 'crawl-ref/source/libutil.cc')
-rw-r--r--crawl-ref/source/libutil.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/libutil.cc b/crawl-ref/source/libutil.cc
index 3b69eab4ed..1b76dd4d09 100644
--- a/crawl-ref/source/libutil.cc
+++ b/crawl-ref/source/libutil.cc
@@ -492,12 +492,12 @@ string pluralise(const string &name, const char *qualifiers[],
// mage -> magi
return name.substr(0, name.length() - 1) + "i";
}
- else if (ends_with(name, "sheep") || ends_with(name, "fish")
- || ends_with(name, "folk") || ends_with(name, "spawn")
- || ends_with(name, "tengu") || ends_with(name, "shedu")
- || ends_with(name, "swine") || ends_with(name, "efreet")
+ else if (name == "gold" || ends_with(name, "fish")
+ || ends_with(name, "folk") || ends_with(name, "spawn")
+ || ends_with(name, "tengu") || ends_with(name, "sheep")
+ || ends_with(name, "swine") || ends_with(name, "efreet")
|| ends_with(name, "jiangshi") || ends_with(name, "unborn")
- || ends_with(name, "raiju") || name == "gold")
+ || ends_with(name, "raiju") )
{
return name;
}