mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
13 lines
249 B
Python
13 lines
249 B
Python
from .RulesData import location_rules
|
|
from Options import Toggle
|
|
|
|
|
|
options = {
|
|
"open" : Toggle,
|
|
"openworld": Toggle
|
|
}
|
|
|
|
for logic_set in location_rules:
|
|
if logic_set != "casual-core":
|
|
options[logic_set.replace("-", "_")] = Toggle
|