mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-03-29 02:13:26 -07:00
rename locations accessibility to "full" and make old locations accessibility debug only
This commit is contained in:
15
Options.py
15
Options.py
@@ -835,14 +835,21 @@ local_objective = Toggle # local triforce pieces, local dungeon prizes etc.
|
||||
|
||||
class Accessibility(Choice):
|
||||
"""Set rules for reachability of your items/locations.
|
||||
Locations: ensure everything can be reached and acquired.
|
||||
Items: ensure all logically relevant items can be acquired.
|
||||
Full: ensure everything can be reached and acquired.
|
||||
Minimal: ensure what is needed to reach your goal can be acquired."""
|
||||
display_name = "Accessibility"
|
||||
option_locations = 0
|
||||
option_items = 1
|
||||
option_full = 0
|
||||
option_minimal = 2
|
||||
alias_none = 2
|
||||
default = 0
|
||||
|
||||
|
||||
class ItemsAccessibility(Accessibility):
|
||||
"""Set rules for reachability of your items/locations.
|
||||
Full: ensure everything can be reached and acquired.
|
||||
Items: all logically relevant items can be acquired. Some items, such as keys, may be self-locking.
|
||||
Minimal: ensure what is needed to reach your goal can be acquired."""
|
||||
option_items = 1
|
||||
default = 1
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user