From e10d5cb12d979e733cedee3f71b021c553197bce Mon Sep 17 00:00:00 2001 From: Adam Borowski Date: Tue, 3 Nov 2009 23:53:48 +0100 Subject: Cope with old saves with 0-piece slime creatures. Can be reverted once CDO is updated or purged. --- crawl-ref/source/monster.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'crawl-ref/source/monster.cc') diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc index 67df8f42ab..c206d8cf86 100644 --- a/crawl-ref/source/monster.cc +++ b/crawl-ref/source/monster.cc @@ -2067,9 +2067,9 @@ static std::string _str_monam(const monsters& mon, description_level_type desc, if (mon.mons_species() == MONS_SLIME_CREATURE && desc != DESC_DBNAME) { ASSERT(mon.number <= 5); - const char* cardinals[] = {"", "large ", "very large ", + const char* cardinals[] = {"buggy ", "", "large ", "very large ", "enormous ", "titanic "}; - result += cardinals[mon.number - 1]; + result += cardinals[mon.number]; } // Done here to cover cases of undead versions of hydras. -- cgit v1.2.3-54-g00ecf