From 5c8a5b3e4533e9debe752aff733435cd11fcff92 Mon Sep 17 00:00:00 2001 From: codemann8 Date: Sun, 13 Nov 2022 16:03:39 -0600 Subject: [PATCH] Including GT entrance if Ganon is included in ER shuffle --- Rom.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Rom.py b/Rom.py index 8d3bf9ca..d6b81772 100644 --- a/Rom.py +++ b/Rom.py @@ -2204,7 +2204,10 @@ def write_strings(rom, world, player, team): if world.shuffle[player] not in ['simple', 'restricted', 'restricted_legacy']: entrances_to_hint.update(ConnectorEntrances) entrances_to_hint.update(DungeonEntrances) - if world.is_atgt_swapped(player): + if world.shuffle_ganon[player]: + entrances_to_hint.update({'Agahnims Tower': 'The sealed castle door'}) + entrances_to_hint.update({'Ganons Tower': 'The dark mountain tower'}) + elif world.is_atgt_swapped(player): entrances_to_hint.update({'Ganons Tower': 'The dark mountain tower'}) else: entrances_to_hint.update({'Agahnims Tower': 'The sealed castle door'})