summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/libutil.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-02-24 14:55:46 +0000
committerChris Campbell <chriscampbell89@gmail.com>2014-02-24 15:37:17 +0000
commitcd953f784cd3eb197096fcb9b7864d1386f85fa4 (patch)
tree8bcd69110301bb4e2b353671350df19292b1834f /crawl-ref/source/libutil.cc
parent6270b87a6b16a7d11da217f09bd03f86d827e15e (diff)
downloadcrawl-ref-cd953f784cd3eb197096fcb9b7864d1386f85fa4.tar.gz
crawl-ref-cd953f784cd3eb197096fcb9b7864d1386f85fa4.zip
Remove giant amoebae
They were almost identical to slime creatures except without the merging ability, and barely appeared outside of a few vaults anyway. Split their weight mostly between brown oozes and slime creatures in vaults and Slime branch spawns. Removed a couple of Slime-only vaults that placed only giant amoebae, possibly they would be fine with slime creatures instead.
Diffstat (limited to 'crawl-ref/source/libutil.cc')
-rw-r--r--crawl-ref/source/libutil.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/crawl-ref/source/libutil.cc b/crawl-ref/source/libutil.cc
index 1762c6d213..aba577524b 100644
--- a/crawl-ref/source/libutil.cc
+++ b/crawl-ref/source/libutil.cc
@@ -445,12 +445,8 @@ string pluralise(const string &name, const char *qualifiers[],
// Fungus, ufetubus, for instance.
return name.substr(0, name.length() - 2) + "i";
}
- else if (ends_with(name, "larva") || ends_with(name, "amoeba")
- || ends_with(name, "antenna"))
- {
- // Giant amoebae sounds a little weird, to tell the truth.
+ else if (ends_with(name, "larva") || ends_with(name, "antenna"))
return name + "e";
- }
else if (ends_with(name, "ex"))
{
// Vortex; vortexes is legal, but the classic plural is cooler.