Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

OOT: Adjust the Logic Trick Keys to be an ordered object #2736

Merged
merged 11 commits into from
Jan 18, 2024
2 changes: 1 addition & 1 deletion worlds/oot/Options.py
Original file line number Diff line number Diff line change
Expand Up @@ -1271,7 +1271,7 @@ class LogicTricks(OptionList):
https://github.com/ArchipelagoMW/Archipelago/blob/main/worlds/oot/LogicTricks.py
"""
display_name = "Logic Tricks"
valid_keys = frozenset(normalized_name_tricks)
valid_keys = tuple(normalized_name_tricks.keys())
valid_keys_casefold = True


Expand Down
Loading