summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--options.py11
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
82class ShufflePanels(Choice): 82class 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