From 86641223c12852d998d45638ea664317d29f8e25 Mon Sep 17 00:00:00 2001 From: qwint Date: Fri, 24 Jan 2025 18:35:54 -0500 Subject: [PATCH] Shivers: Stop using get_all_state cache to fix timing issue #4522 Co-authored-by: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> --- worlds/shivers/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/shivers/__init__.py b/worlds/shivers/__init__.py index 5c6203fd..85f2cf18 100644 --- a/worlds/shivers/__init__.py +++ b/worlds/shivers/__init__.py @@ -245,7 +245,7 @@ class ShiversWorld(World): storage_items += [self.create_item("Empty") for _ in range(3)] - state = self.multiworld.get_all_state(True) + state = self.multiworld.get_all_state(False) self.random.shuffle(storage_locs) self.random.shuffle(storage_items)