Removal of OW world code in copy_world, in prep for ER rewrite

This commit is contained in:
codemann8
2021-10-02 13:46:32 -05:00
parent c99805f47d
commit 21525b6d18

View File

@@ -497,10 +497,6 @@ def copy_world(world):
ret.state.stale = {player: True for player in range(1, world.players + 1)}
ret.owedges = world.owedges
for edge in ret.owedges:
transition = ret.check_for_owedge(edge.name, edge.player)
if transition is not None:
transition.dest = edge
ret.doors = world.doors
for door in ret.doors:
entrance = ret.check_for_entrance(door.name, door.player)