forked from ArchipelagoMW/Archipelago
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Rebased from main and fixed conflicts with post-993 state
- Loading branch information
1 parent
ea4a806
commit 418586a
Showing
3 changed files
with
11 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from ..Options import dlc_quest_option_classes | ||
from .. import DLCqworld | ||
|
||
options_to_exclude = [] | ||
options_to_include = [option_to_include for option_to_include in dlc_quest_option_classes | ||
if option_to_include.internal_name not in options_to_exclude] | ||
options_to_exclude = ["progression_balancing", "accessibility", "start_inventory", "start_hints", "death_link"] | ||
options_to_include = [option for option_name, option in DLCqworld.options_dataclass.type_hints.items() | ||
if option_name not in options_to_exclude] |