Subnautica: add empty tanks option (#5271)

This commit is contained in:
Fabian Dill
2025-08-02 21:19:23 +02:00
committed by GitHub
parent 72ae076ce7
commit d408f7cabc
2 changed files with 7 additions and 1 deletions

View File

@@ -129,6 +129,10 @@ class FillerItemsDistribution(ItemDict):
return list(self.value.keys()), list(accumulate(self.value.values()))
class EmptyTanks(DefaultOnToggle):
"""Oxygen Tanks stored in inventory are empty if enabled."""
@dataclass
class SubnauticaOptions(PerGameCommonOptions):
swim_rule: SwimRule
@@ -140,3 +144,4 @@ class SubnauticaOptions(PerGameCommonOptions):
death_link: SubnauticaDeathLink
start_inventory_from_pool: StartInventoryPool
filler_items_distribution: FillerItemsDistribution
empty_tanks: EmptyTanks