mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 04:01:32 -06:00

* OriBF: Move Ori and the Blind Forest to `worlds_disabled/` * Add readme for `worlds_disabled` folder * fix link * fix link 2 * Remove useless comment Co-authored-by: el-u <109771707+el-u@users.noreply.github.com> --------- Co-authored-by: el-u <109771707+el-u@users.noreply.github.com>
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
|