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 /test/TestMastery.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 'test/TestMastery.py')
-rw-r--r-- | test/TestMastery.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/test/TestMastery.py b/test/TestMastery.py index 3ebe40a..c9c79a9 100644 --- a/test/TestMastery.py +++ b/test/TestMastery.py | |||
@@ -5,7 +5,8 @@ class TestMasteryWhenVictoryIsTheEnd(LingoTestBase): | |||
5 | options = { | 5 | options = { |
6 | "mastery_achievements": "22", | 6 | "mastery_achievements": "22", |
7 | "victory_condition": "the_end", | 7 | "victory_condition": "the_end", |
8 | "shuffle_colors": "true" | 8 | "shuffle_colors": "true", |
9 | "shuffle_postgame": "true", | ||
9 | } | 10 | } |
10 | 11 | ||
11 | def test_requirement(self): | 12 | def test_requirement(self): |
@@ -43,7 +44,8 @@ class TestMasteryBlocksDependents(LingoTestBase): | |||
43 | options = { | 44 | options = { |
44 | "mastery_achievements": "24", | 45 | "mastery_achievements": "24", |
45 | "shuffle_colors": "true", | 46 | "shuffle_colors": "true", |
46 | "location_checks": "insanity" | 47 | "location_checks": "insanity", |
48 | "victory_condition": "level_2", | ||
47 | } | 49 | } |
48 | 50 | ||
49 | def test_requirement(self): | 51 | def test_requirement(self): |