From db811f198c63246553027f03dbfa2e74def40e81 Mon Sep 17 00:00:00 2001 From: compiling <8335770+compiling@users.noreply.github.com> Date: Sat, 25 Apr 2020 19:41:53 +1000 Subject: [PATCH] Fix another bunny rule bug. --- Rules.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Rules.py b/Rules.py index c1a75500..404e4332 100644 --- a/Rules.py +++ b/Rules.py @@ -1614,8 +1614,7 @@ def set_bunny_rules(world, player): if location.name in OWGSets.get_superbunny_accessible_locations(): possible_options.append(lambda state: path_to_access_rule(new_path, entrance) and state.has_Mirror(player)) continue - else: - continue + continue if new_region.is_dark_world: queue.append((new_region, new_path)) else: @@ -1716,8 +1715,7 @@ def set_inverted_bunny_rules(world, player): if location.name in OWGSets.get_superbunny_accessible_locations(): possible_options.append(lambda state: path_to_access_rule(new_path, entrance) and state.has_Mirror(player)) continue - else: - continue + continue if new_region.is_light_world: queue.append((new_region, new_path)) else: