hecked a copy paste

This commit is contained in:
qadan
2020-02-19 10:19:58 -04:00
parent 0ed41f6b13
commit 6f38664a80

View File

@@ -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.