Implement new weapons modes

This also includes some partial additional cleanup of the item pool.
This commit is contained in:
Kevin Cathcart
2019-08-10 15:30:14 -04:00
parent b8ea2eb4b1
commit 996bf8495c
5 changed files with 73 additions and 47 deletions

View File

@@ -247,6 +247,7 @@ def copy_world(world):
# copy progress items in state
ret.state.prog_items = world.state.prog_items.copy()
ret.precollected_items = world.precollected_items.copy()
ret.state.stale = {player: True for player in range(1, world.players + 1)}
for player in range(1, world.players + 1):