Forgot to rename location in Rules.py to reflect Location.py changes

This commit is contained in:
MarioSpore
2025-08-15 22:03:33 -04:00
parent 76b4ff2a6e
commit 24d1b96b9e

View File

@@ -5,7 +5,7 @@ from Options import FreeText, NumericOption, Toggle, DefaultOnToggle, Choice, Te
class StartingArea(Choice): class StartingArea(Choice):
""" """
Here, you can select which area you'll start the game with. Here, you can select which area you'll start the game with. [NOT IMPLEMENTED]
Whichever one you pick is the region you'll have access to at the start of the Multiworld. Whichever one you pick is the region you'll have access to at the start of the Multiworld.
""" """
option_whoville = 0 option_whoville = 0
@@ -76,14 +76,15 @@ class TrapLinkOption(Toggle):
@dataclass @dataclass
class GrinchOptions(PerGameCommonOptions):#DeathLinkMixin class GrinchOptions(PerGameCommonOptions):#DeathLinkMixin
starting_area: StartingArea
progressive_vacuum: ProgressiveVacuum progressive_vacuum: ProgressiveVacuum
missionsanity: Missionsanity missionsanity: Missionsanity
annoyinglocations: AnnoyingLocations
minigamesanity: Supadow
progressive_gadget: ProgressiveGadget
supadow_minigames: Supadow
giftsanity: Gifts
movesanity: Movesanity
unlimited_eggs: UnlimitedEggs unlimited_eggs: UnlimitedEggs
ring_link: RingLinkOption ring_link: RingLinkOption
trap_link: TrapLinkOption trap_link: TrapLinkOption
minigamesanity: Supadow
giftsanity: Gifts
movesanity: Movesanity
starting_area: StartingArea
progressive_gadget: ProgressiveGadget
annoyinglocations: AnnoyingLocations