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

The Witness: Don't unnecessarily break people's 0.4.4 yamls #2940

Merged
merged 2 commits into from
Mar 12, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions worlds/witness/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,10 @@ class EarlyCaves(Choice):
If you choose "add_to_pool" and you are already playing a remote Door Shuffle mode, this setting will do nothing."""
display_name = "Early Caves"
option_off = 0
alias_false = 0
option_add_to_pool = 1
option_starting_inventory = 2
alias_true = 2


class ShuffleSymbols(DefaultOnToggle):
Expand All @@ -39,8 +41,10 @@ class ShuffleLasers(Choice):
be redirected as normal, for both applications of redirection."""
display_name = "Shuffle Lasers"
option_off = 0
alias_false = 0
option_local = 1
option_anywhere = 2
alias_true = 2


class ShuffleDoors(Choice):
Expand Down
Loading