Subnautica: don't override plando during pre_fill

This commit is contained in:
Fabian Dill 2022-10-21 22:50:36 +02:00 committed by black-sliver
parent 89d1a80e01
commit 6535836e5c
1 changed files with 2 additions and 1 deletions
worlds/subnautica

View File

@ -153,7 +153,8 @@ class SubnauticaWorld(World):
return self.prefill_items
def pre_fill(self) -> None:
reachable = self.world.get_reachable_locations(player=self.player)
reachable = [location for location in self.world.get_reachable_locations(player=self.player)
if not location.item]
self.world.random.shuffle(reachable)
items = self.prefill_items.copy()
for item in items: