diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2024-07-24 08:34:51 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-24 14:34:51 +0200 |
commit | 1c142350c379d503de512953072f55a8737c30d2 (patch) | |
tree | 40b469c4be80a2f273706a66683e9074217a6045 /options.py | |
parent | cccdf6481571cd883c9519cde0a717b6f336fbda (diff) | |
download | lingo-apworld-1c142350c379d503de512953072f55a8737c30d2.tar.gz lingo-apworld-1c142350c379d503de512953072f55a8737c30d2.tar.bz2 lingo-apworld-1c142350c379d503de512953072f55a8737c30d2.zip |
Lingo: Add option to prevent shuffling postgame (#3350)
* Lingo: Add option to prevent shuffling postgame * Allow roof access on door shuffle * Fix broken unit test * Simplified THE END edge case * Revert unnecessary change * Review comments * Fix mastery unit test * Update generated.dat * Added player's name to error message
Diffstat (limited to 'options.py')
-rw-r--r-- | options.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/options.py b/options.py index 333b3e1..5a076e5 100644 --- a/options.py +++ b/options.py | |||
@@ -194,6 +194,11 @@ class EarlyColorHallways(Toggle): | |||
194 | display_name = "Early Color Hallways" | 194 | display_name = "Early Color Hallways" |
195 | 195 | ||
196 | 196 | ||
197 | class ShufflePostgame(Toggle): | ||
198 | """When off, locations that could not be reached without also reaching your victory condition are removed.""" | ||
199 | display_name = "Shuffle Postgame" | ||
200 | |||
201 | |||
197 | class TrapPercentage(Range): | 202 | class TrapPercentage(Range): |
198 | """Replaces junk items with traps, at the specified rate.""" | 203 | """Replaces junk items with traps, at the specified rate.""" |
199 | display_name = "Trap Percentage" | 204 | display_name = "Trap Percentage" |
@@ -263,6 +268,7 @@ class LingoOptions(PerGameCommonOptions): | |||
263 | mastery_achievements: MasteryAchievements | 268 | mastery_achievements: MasteryAchievements |
264 | level_2_requirement: Level2Requirement | 269 | level_2_requirement: Level2Requirement |
265 | early_color_hallways: EarlyColorHallways | 270 | early_color_hallways: EarlyColorHallways |
271 | shuffle_postgame: ShufflePostgame | ||
266 | trap_percentage: TrapPercentage | 272 | trap_percentage: TrapPercentage |
267 | trap_weights: TrapWeights | 273 | trap_weights: TrapWeights |
268 | puzzle_skip_percentage: PuzzleSkipPercentage | 274 | puzzle_skip_percentage: PuzzleSkipPercentage |