OoT: Two Bugfixes (#4389)

This commit is contained in:
Exempt-Medic
2025-01-14 16:39:13 -05:00
committed by GitHub
parent 01df35f215
commit 207a76d1b5
2 changed files with 2 additions and 3 deletions

View File

@@ -582,8 +582,7 @@ class OOTWorld(World):
new_exit = OOTEntrance(self.player, self.multiworld, '%s -> %s' % (new_region.name, exit), new_region)
new_exit.vanilla_connected_region = exit
new_exit.rule_string = rule
if self.options.logic_rules != 'no_logic':
self.parser.parse_spot_rule(new_exit)
self.parser.parse_spot_rule(new_exit)
if new_exit.never:
logger.debug('Dropping unreachable exit: %s', new_exit.name)
else: