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]
|