From fd99620ac979e52c934b0cfb7de9d02cb590dd28 Mon Sep 17 00:00:00 2001 From: aerinon Date: Fri, 6 Oct 2023 12:56:29 -0600 Subject: [PATCH] Standard: generation error fixed --- Rules.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rules.py b/Rules.py index 4140469c..9b6ed1a9 100644 --- a/Rules.py +++ b/Rules.py @@ -1375,12 +1375,12 @@ def find_rules_for_zelda_delivery(world, player): if not rule(blank_state): rule_list.append(rule) next_path.append(ext.name) - if connect.name == 'Sanctuary': + if connect.name == 'Hyrule Castle Throne Room': return rule_list, next_path else: visited.add(connect) queue.append((connect, rule_list, next_path)) - raise Exception('No path to Sanctuary found') + raise Exception('No path to Throne Room found') def set_big_bomb_rules(world, player):