Skip to content

Commit

Permalink
Witness: Fixing a world bleed issue with multiple Witness seeds, prev…
Browse files Browse the repository at this point in the history
…enting generation (ArchipelagoMW#2031)

Co-authored-by: blastron <[email protected]>
  • Loading branch information
2 people authored and kl3cks7r committed Aug 11, 2023
1 parent b520618 commit dee6494
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/witness/items.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def __init__(self, multiworld: MultiWorld, player: int, logic: WitnessPlayerLogi
self._locations: WitnessPlayerLocations = locat

# Duplicate the static item data, then make any player-specific adjustments to classification.
self.item_data: Dict[str, ItemData] = copy.copy(StaticWitnessItems.item_data)
self.item_data: Dict[str, ItemData] = copy.deepcopy(StaticWitnessItems.item_data)

# Remove all progression items that aren't actually in the game.
self.item_data = {name: data for (name, data) in self.item_data.items()
Expand Down

0 comments on commit dee6494

Please sign in to comment.