Fixed some inconsistencies with OWG starting boots considerations

This commit is contained in:
codemann8
2025-01-03 04:31:51 -06:00
parent 9eba1d4c40
commit 8ce8b93c8b
4 changed files with 13 additions and 9 deletions

View File

@@ -619,6 +619,7 @@ def copy_world(world):
ret.inaccessible_regions = world.inaccessible_regions.copy()
ret.damage_table = world.damage_table
ret.data_tables = world.data_tables # can be changed...
ret.settings = world.settings
for player in range(1, world.players + 1):
create_regions(ret, player)
@@ -832,6 +833,7 @@ def copy_world_premature(world, player):
ret.damage_table = world.damage_table
ret.data_tables = world.data_tables # can be changed...
ret.key_logic = world.key_logic.copy()
ret.settings = world.settings
ret.is_copied_world = True