Skip to content

Commit

Permalink
SMZ3: Add Start Inventory From Pool (#4252)
Browse files Browse the repository at this point in the history
* Add Start Inventory From Pool

Just as the title implies

* Update Options.py

Fix dataclass since I had just pulled changes from prior options.py without seeing if anythin had changed

* Update Options.py

One more time with feeling

* Update worlds/smz3/Options.py

Co-authored-by: Exempt-Medic <[email protected]>

---------

Co-authored-by: Exempt-Medic <[email protected]>
  • Loading branch information
dontjoome and Exempt-Medic authored Nov 29, 2024
1 parent 8923b06 commit ce210cd
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion worlds/smz3/Options.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import typing
from Options import Choice, Option, PerGameCommonOptions, Toggle, DefaultOnToggle, Range, ItemsAccessibility

from Options import Choice, Option, PerGameCommonOptions, Toggle, DefaultOnToggle, Range, ItemsAccessibility, StartInventoryPool
from dataclasses import dataclass

class SMLogic(Choice):
Expand Down Expand Up @@ -129,6 +130,7 @@ class EnergyBeep(DefaultOnToggle):

@dataclass
class SMZ3Options(PerGameCommonOptions):
start_inventory_from_pool: StartInventoryPool
accessibility: ItemsAccessibility
sm_logic: SMLogic
sword_location: SwordLocation
Expand Down

0 comments on commit ce210cd

Please sign in to comment.