From 2b6d11bef3e28173199f710a0e11b9f094fc669d Mon Sep 17 00:00:00 2001 From: AmazingAmpharos Date: Tue, 14 Nov 2017 04:25:12 -0600 Subject: [PATCH] Credits fix The "Flute Boy plays again" text is supposed to refer to the item buried by the shovel, not the item given in the Dark World. Easy fix. --- Rom.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 593ee6cf..c3c3b8ac 100644 --- a/Rom.py +++ b/Rom.py @@ -620,7 +620,7 @@ def write_strings(rom, world): magicshopitem = world.get_location('Potion Shop').item magicshopitem_text = random.choice(MagicShop_texts) if magicshopitem is None or magicshopitem.magicshop_credit_text is None else magicshopitem.magicshop_credit_text - fluteboyitem = world.get_location('Stumpy').item + fluteboyitem = world.get_location('Flute Spot').item fluteboyitem_text = random.choice(FluteBoy_texts) if fluteboyitem is None or fluteboyitem.fluteboy_credit_text is None else fluteboyitem.fluteboy_credit_text credits.update_credits_line('castle', 0, random.choice(KingsReturn_texts))