From 6f38664a8049bfcdad44458778385ec8279b48ea Mon Sep 17 00:00:00 2001 From: qadan Date: Wed, 19 Feb 2020 10:19:58 -0400 Subject: [PATCH] hecked a copy paste --- Rules.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Rules.py b/Rules.py index 8ef3af1a..a5e8c1ae 100644 --- a/Rules.py +++ b/Rules.py @@ -1582,10 +1582,10 @@ def set_bunny_rules(world, player): return lambda state: state.has_Mirror(player) or state.has_Pearl(player) if not any([ location != None and location.name in OWGSets.get_superbunny_accessible_locations() and connecting_entrance.name not in OWGSets.get_invalid_mirror_bunny_entrances_dw(), - not region.is_dark_world]): + not region.is_light_world]): return lambda state: state.has_Pearl(player) else: - if not region.is_dark_world: + if not region.is_light_world: return lambda state: state.has_Pearl(player) # in this case we are mixed region. # we collect possible options. @@ -1682,10 +1682,10 @@ def set_inverted_bunny_rules(world, player): return lambda state: state.has_Mirror(player) or state.has_Pearl(player) if not any([ location != None and location.name in OWGSets.get_superbunny_accessible_locations() and connecting_entrance.name not in OWGSets.get_invalid_mirror_bunny_entrances_dw(), - not region.is_light_world]): + not region.is_dark_world]): return lambda state: state.has_Pearl(player) else: - if not region.is_light_world: + if not region.is_dark_world: return lambda state: state.has_Pearl(player) # in this case we are mixed region. # we collect possible options.