From 8e4ae19f30be144052a66c70393a5b74ab065efa Mon Sep 17 00:00:00 2001 From: uthuluc <58225812+uthuluc@users.noreply.github.com> Date: Thu, 11 Jun 2026 22:28:46 -0400 Subject: [PATCH] Update Chest Mimic.ash I'm removing the word "egg" from the monster list because I think it is slightly confusing and bad for readability --- Source/relay/TourGuide/Items of the Month/2024/Chest Mimic.ash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/relay/TourGuide/Items of the Month/2024/Chest Mimic.ash b/Source/relay/TourGuide/Items of the Month/2024/Chest Mimic.ash index 8ee4e5d2..b36b1d14 100644 --- a/Source/relay/TourGuide/Items of the Month/2024/Chest Mimic.ash +++ b/Source/relay/TourGuide/Items of the Month/2024/Chest Mimic.ash @@ -35,7 +35,7 @@ void IOTMChestMimicGenerateResource(ChecklistEntry [int] resource_entries) monster currMon = entry.split_string(":")[0].to_monster(); int currAmt = entry.split_string(":")[1].to_int(); string freeText = currMon.attributes.contains_text("FREE") ? " (free fight)" : ""; - eggEntries.listAppend(pluralise(currAmt, currMon+" egg", currMon+" eggs")+freeText); + eggEntries.listAppend(pluralise(currAmt, currMon+"", currMon+"")+freeText); } string header = $item[mimic egg].pluralise().capitaliseFirstLetter();