From 6c844750aede98811c834e0e407d99ff7348dbf4 Mon Sep 17 00:00:00 2001 From: blastron Date: Sun, 10 Sep 2023 14:29:42 -0700 Subject: [PATCH] Witness: fix items being modified by other slots (#2161) --- worlds/witness/items.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/witness/items.py b/worlds/witness/items.py index 7e083534..82c79047 100644 --- a/worlds/witness/items.py +++ b/worlds/witness/items.py @@ -152,7 +152,7 @@ class WitnessPlayerItems: """ 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]: """