diff options
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 |