diff options
-rw-r--r-- | apworld/options.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apworld/options.py b/apworld/options.py index 6f60282..240f8af 100644 --- a/apworld/options.py +++ b/apworld/options.py | |||
@@ -1,9 +1,9 @@ | |||
1 | from dataclasses import dataclass | 1 | from dataclasses import dataclass |
2 | 2 | ||
3 | from Options import PerGameCommonOptions, Toggle, Choice | 3 | from Options import PerGameCommonOptions, Toggle, Choice, DefaultOnToggle |
4 | 4 | ||
5 | 5 | ||
6 | class ShuffleDoors(Toggle): | 6 | class ShuffleDoors(DefaultOnToggle): |
7 | """If enabled, most doors will open from receiving an item rather than fulfilling the in-game requirements.""" | 7 | """If enabled, most doors will open from receiving an item rather than fulfilling the in-game requirements.""" |
8 | display_name = "Shuffle Doors" | 8 | display_name = "Shuffle Doors" |
9 | 9 | ||