From 285f341a8c695098b4504cd98b9efb3a946adc56 Mon Sep 17 00:00:00 2001 From: Silvris <58583688+Silvris@users.noreply.github.com> Date: Sat, 30 Mar 2024 13:22:52 -0500 Subject: [PATCH] shuffle before passing to fill restrictive --- worlds/kdl3/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/worlds/kdl3/__init__.py b/worlds/kdl3/__init__.py index 6d0c196ab1e6..be299f6f2c12 100644 --- a/worlds/kdl3/__init__.py +++ b/worlds/kdl3/__init__.py @@ -206,6 +206,8 @@ def pre_fill(self) -> None: locations = [self.multiworld.get_location(spawn, self.player) for spawn in spawns] items = [self.create_item(animal) for animal in animal_pool] allstate = self.multiworld.get_all_state(False) + self.random.shuffle(locations) + self.random.shuffle(items) fill_restrictive(self.multiworld, allstate, locations, items, True, True) else: animal_friends = animal_friend_spawns.copy()