From ff6bbbf1fc2ec9806444611d1f72facdff3c87ad Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 13 Nov 2022 16:17:18 -0600 Subject: [PATCH] Including Links House entrance if LH is included in ER shuffle --- Rom.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index d6b81772..33752226 100644 --- a/Rom.py +++ b/Rom.py @@ -2220,7 +2220,10 @@ def write_strings(rom, world, player, team): elif world.shopsanity[player]: entrances_to_hint.update(ShopEntrances) if world.shuffle[player] not in ['vanilla', 'dungeonssimple', 'dungeonsfull']: - if not world.is_bombshop_start(player): + if world.shufflelinks[player]: + entrances_to_hint.update({'Big Bomb Shop': 'The old bomb shop'}) + entrances_to_hint.update({'Links House': 'The hero\'s old residence'}) + elif not world.is_bombshop_start(player): entrances_to_hint.update({'Big Bomb Shop': 'The old bomb shop'}) else: entrances_to_hint.update({'Links House': 'The hero\'s old residence'})