summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libutil.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/libutil.cc')
-rw-r--r--crawl-ref/source/libutil.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/libutil.cc b/crawl-ref/source/libutil.cc
index 7d06e22c5f..5a34a0a825 100644
--- a/crawl-ref/source/libutil.cc
+++ b/crawl-ref/source/libutil.cc
@@ -341,9 +341,9 @@ std::string pluralise(const std::string &name,
// knife -> knives
return name.substr(0, name.length() - 2) + "ves";
}
- else if (ends_with(name, "ff"))
+ else if (ends_with(name, "staff"))
{
- // staff -> staves
+ // staff -> staves, but not hippogriff -> hippogrives.
return name.substr(0, name.length() - 2) + "ves";
}
else if (ends_with(name, "f"))