diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-10-28 18:21:13 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-28 23:21:13 +0100 |
commit | ce937861c4078432ca4d81236d6c50fbd1d88d0c (patch) | |
tree | 66f25039568197d74c78eb5bc38f777825397c6c | |
parent | 75e4f64abcbcb5c91175ce7d9adaa7b415d29f56 (diff) | |
download | lingo-apworld-ce937861c4078432ca4d81236d6c50fbd1d88d0c.tar.gz lingo-apworld-ce937861c4078432ca4d81236d6c50fbd1d88d0c.tar.bz2 lingo-apworld-ce937861c4078432ca4d81236d6c50fbd1d88d0c.zip |
Lingo: Update documentation for panel shuffle (#4086)
-rw-r--r-- | options.py | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/options.py b/options.py index 2fd57ff..2d6e996 100644 --- a/options.py +++ b/options.py | |||
@@ -80,10 +80,15 @@ class ShuffleColors(DefaultOnToggle): | |||
80 | 80 | ||
81 | 81 | ||
82 | class ShufflePanels(Choice): | 82 | class ShufflePanels(Choice): |
83 | """If on, the puzzles on each panel are randomized. | 83 | """Determines how panel puzzles are randomized. |
84 | 84 | ||
85 | On "rearrange", the puzzles are the same as the ones in the base game, but | 85 | - **None:** Most panels remain the same as in the base game. Note that there are |
86 | are placed in different areas. | 86 | some panels (in particular, in Starting Room and Second Room) that are changed |
87 | by the randomizer even when panel shuffle is disabled. | ||
88 | - **Rearrange:** The puzzles are the same as the ones in the base game, but are | ||
89 | placed in different areas. | ||
90 | |||
91 | More options for puzzle randomization are planned in the future. | ||
87 | """ | 92 | """ |
88 | display_name = "Shuffle Panels" | 93 | display_name = "Shuffle Panels" |
89 | option_none = 0 | 94 | option_none = 0 |