summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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";