mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-08-04 11:46:16 -07: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 <[email protected]> --------- Co-authored-by: el-u <[email protected]>
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
|