summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libutil.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-19 01:17:07 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-19 01:17:07 +0000
commit9e383fbf69167db190f558d3939f3b5c1798bfe6 (patch)
treeca90fdaab91b7e29fadc3b6b2140802ae0cf1b30 /crawl-ref/source/libutil.cc
parentcd2263afc231d2f30b5c3fb0d03d94a923691d38 (diff)
downloadcrawl-ref-9e383fbf69167db190f558d3939f3b5c1798bfe6.tar.gz
crawl-ref-9e383fbf69167db190f558d3939f3b5c1798bfe6.zip
Properly pluralize "antenna" as "antennae".
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8566 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/libutil.cc')
-rw-r--r--crawl-ref/source/libutil.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/libutil.cc b/crawl-ref/source/libutil.cc
index 7d8c300f2c..2c264313f0 100644
--- a/crawl-ref/source/libutil.cc
+++ b/crawl-ref/source/libutil.cc
@@ -334,7 +334,8 @@ std::string pluralise(const std::string &name,
// Fungus, ufetubus, for instance.
return name.substr(0, name.length() - 2) + "i";
}
- else if (ends_with(name, "larva") || ends_with(name, "amoeba"))
+ else if (ends_with(name, "larva") || ends_with(name, "amoeba")
+ || ends_with(name, "antenna"))
{
// Giant amoebae sounds a little weird, to tell the truth.
return name + "e";