From 9e383fbf69167db190f558d3939f3b5c1798bfe6 Mon Sep 17 00:00:00 2001 From: dolorous Date: Mon, 19 Jan 2009 01:17:07 +0000 Subject: Properly pluralize "antenna" as "antennae". git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8566 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/libutil.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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"; -- cgit v1.2.3-54-g00ecf