summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--crawl-ref/source/libutil.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/libutil.cc b/crawl-ref/source/libutil.cc
index d682eb08f7..9a9408910f 100644
--- a/crawl-ref/source/libutil.cc
+++ b/crawl-ref/source/libutil.cc
@@ -347,7 +347,7 @@ std::string pluralise(const std::string &name,
return name.substr(0, name.length() - 1) + "i";
}
else if (ends_with(name, "sheep") || ends_with(name, "manes")
- || ends_with(name, "fish"))
+ || ends_with(name, "fish") || ends_with(name, "folk"))
{
// Maybe we should generalise 'manes' to ends_with("es")?
return name;