mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 04:01:32 -06:00
Subnautica: don't override plando during pre_fill
This commit is contained in:

committed by
black-sliver

parent
89d1a80e01
commit
6535836e5c
@@ -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:
|
||||
|
Reference in New Issue
Block a user