diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-12 12:33:24 -0400 |
---|---|---|
committer | Star Rauchenberger <fefferburbia@gmail.com> | 2025-08-12 12:33:24 -0400 |
commit | 447a222b57e498f7904033c59e68d21d6a246abd (patch) | |
tree | e756845a971729758ba091474322fd722d44e0ec /apworld/options.py | |
parent | 4e56e7681c0769dd247c0512a682a067426436bc (diff) | |
download | lingo2-archipelago-447a222b57e498f7904033c59e68d21d6a246abd.tar.gz lingo2-archipelago-447a222b57e498f7904033c59e68d21d6a246abd.tar.bz2 lingo2-archipelago-447a222b57e498f7904033c59e68d21d6a246abd.zip |
Items and connections in the apworld
Diffstat (limited to 'apworld/options.py')
-rw-r--r-- | apworld/options.py | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/apworld/options.py b/apworld/options.py index f33f5af..77f0ae3 100644 --- a/apworld/options.py +++ b/apworld/options.py | |||
@@ -1,8 +1,13 @@ | |||
1 | from dataclasses import dataclass | 1 | from dataclasses import dataclass |
2 | 2 | ||
3 | from Options import PerGameCommonOptions | 3 | from Options import PerGameCommonOptions, Toggle |
4 | |||
5 | |||
6 | class ShuffleDoors(Toggle): | ||
7 | """If enabled, most doors will open from receiving an item rather than fulfilling the in-game requirements.""" | ||
8 | display_name = "Shuffle Doors" | ||
4 | 9 | ||
5 | 10 | ||
6 | @dataclass | 11 | @dataclass |
7 | class Lingo2Options(PerGameCommonOptions): | 12 | class Lingo2Options(PerGameCommonOptions): |
8 | pass | 13 | shuffle_doors: ShuffleDoors |