mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
6 lines
310 B
Python
6 lines
310 B
Python
|
|
from .. import DLCqworld
|
||
|
|
|
||
|
|
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]
|