Subnautica: use correct option parent class (#954)

* Subnautica: use correct option parent class

* Update Options.py
This commit is contained in:
Fabian Dill 2022-08-23 01:02:29 +02:00 committed by GitHub
parent 0a5b24be2b
commit e548abd332
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -1,4 +1,6 @@
from Options import Choice, Range, DeathLink, Toggle
import typing
from Options import Choice, Range, DeathLink
from .Creatures import all_creatures
@ -39,7 +41,7 @@ class CreatureScans(Range):
range_end = len(all_creatures)
class AggressiveScanLogic(Toggle):
class AggressiveScanLogic(Choice):
"""By default (Stasis), aggressive Creature Scans are logically expected only with a Stasis Rifle.
Containment: Removes Stasis Rifle as expected solution and expects Alien Containment instead.
Either: Creatures may be expected to be scanned via Stasis Rifle or Containment, whichever is found first.