Witness: fix items being modified by other slots (#2161)

This commit is contained in:
blastron 2023-09-10 14:29:42 -07:00 committed by GitHub
parent 8649b15787
commit 6c844750ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ class WitnessPlayerItems:
""" """
Returns the list of items that must be in the pool for the game to successfully generate. Returns the list of items that must be in the pool for the game to successfully generate.
""" """
return self._mandatory_items return self._mandatory_items.copy()
def get_filler_items(self, quantity: int) -> Dict[str, int]: def get_filler_items(self, quantity: int) -> Dict[str, int]:
""" """