Subnautica: add extra Laser Cutter Fragment to priority filler

This commit is contained in:
Fabian Dill 2023-09-15 19:28:55 +02:00 committed by Fabian Dill
parent ce8f07b347
commit 9312f14ffb
1 changed files with 5 additions and 4 deletions

View File

@ -116,15 +116,16 @@ class SubnauticaWorld(World):
# list of high-count important fragments as priority filler
[
"Cyclops Engine Fragment",
"Modification Station Fragment",
"Mobile Vehicle Bay Fragment",
"Seamoth Fragment",
"Cyclops Hull Fragment",
"Cyclops Bridge Fragment",
"Seamoth Fragment",
"Prawn Suit Fragment",
"Mobile Vehicle Bay Fragment",
"Modification Station Fragment",
"Moonpool Fragment",
"Laser Cutter Fragment",
],
k=min(extras, 8)):
k=min(extras, 9)):
item = self.create_item(item_name)
pool.append(item)
extras -= 1