summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libutil.cc
diff options
context:
space:
mode:
authorNeil Moore <neil@s-z.org>2012-08-01 22:33:41 -0400
committerNeil Moore <neil@s-z.org>2012-08-01 22:53:03 -0400
commite37e9049108989b7ab8b36d22db406904758683c (patch)
tree2262f5f238a33ecda3f82885b4817363c47895e5 /crawl-ref/source/libutil.cc
parent183de69bd03ec868d90ed5dba35431b7a98ceb5d (diff)
downloadcrawl-ref-e37e9049108989b7ab8b36d22db406904758683c.tar.gz
crawl-ref-e37e9049108989b7ab8b36d22db406904758683c.zip
Properly pluralise "marigold" -> "marigolds".
Currently irrelevant (@_colour_name_@ is used as an adjective and thus never pluralised), but really the self-"plural" should be restricted to the mass noun "gold" and not to its compounds.
Diffstat (limited to 'crawl-ref/source/libutil.cc')
-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 ac7216c6df..08187e2109 100644
--- a/crawl-ref/source/libutil.cc
+++ b/crawl-ref/source/libutil.cc
@@ -487,7 +487,7 @@ std::string pluralise(const std::string &name,
|| ends_with(name, "swine") || ends_with(name, "efreet")
// "shedu" is male, "lammasu" is female of the same creature
|| ends_with(name, "lammasu") || ends_with(name, "lamassu")
- || ends_with(name, "gold"))
+ || name == "gold")
{
return name;
}