Merge branch 'OverworldShuffleDev' into OverworldShuffle

This commit is contained in:
codemann8
2022-09-05 13:41:06 -05:00
2 changed files with 3 additions and 2 deletions

View File

@@ -545,7 +545,7 @@ def fill_prizes(world, attempts=15):
continue
break
else:
raise FillError('Unable to place dungeon prizes')
raise FillError("Unable to place dungeon prizes: {}".format(", ".join(list(map(lambda d: d.hint_text, prize_locs)))))
def set_up_shops(world, player):

View File

@@ -67,7 +67,8 @@ def set_rules(world, player):
if not world.swamp_patch_required[player]:
add_rule(world.get_entrance('Swamp Lobby Moat', player), lambda state: state.has_Mirror(player))
set_bunny_rules(world, player, world.mode[player] == 'inverted')
if not world.is_copied_world:
set_bunny_rules(world, player, world.mode[player] == 'inverted')
def mirrorless_path_to_location(world, startName, targetName, player):