Standard: generation error fixed

This commit is contained in:
aerinon
2023-10-06 12:56:29 -06:00
parent 7a16ea4fe1
commit fd99620ac9

View File

@@ -1375,12 +1375,12 @@ def find_rules_for_zelda_delivery(world, player):
if not rule(blank_state): if not rule(blank_state):
rule_list.append(rule) rule_list.append(rule)
next_path.append(ext.name) next_path.append(ext.name)
if connect.name == 'Sanctuary': if connect.name == 'Hyrule Castle Throne Room':
return rule_list, next_path return rule_list, next_path
else: else:
visited.add(connect) visited.add(connect)
queue.append((connect, rule_list, next_path)) 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): def set_big_bomb_rules(world, player):