diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2025-01-15 15:13:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-15 21:13:29 +0100 |
commit | a834180195305fe0be91bd0ced5b75de104b7520 (patch) | |
tree | 6b4c1f8713e54dea7b75b9abe20c224178d02921 /test | |
parent | 1c7fcd002eb59e8cda09997eb89ecd609aff7275 (diff) | |
download | lingo-apworld-a834180195305fe0be91bd0ced5b75de104b7520.tar.gz lingo-apworld-a834180195305fe0be91bd0ced5b75de104b7520.tar.bz2 lingo-apworld-a834180195305fe0be91bd0ced5b75de104b7520.zip |
Lingo: Add speed boost mode (#3989)
* Add speed boost mode * Update generated.dat * Modify the actual trap weights option when speed boost mode is on * EOF newline * Update generated.dat
Diffstat (limited to 'test')
-rw-r--r-- | test/TestOptions.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/test/TestOptions.py b/test/TestOptions.py index bd8ed81..224dbe0 100644 --- a/test/TestOptions.py +++ b/test/TestOptions.py | |||
@@ -59,4 +59,11 @@ class TestShuffleSunwarpsAccess(LingoTestBase): | |||
59 | "victory_condition": "pilgrimage", | 59 | "victory_condition": "pilgrimage", |
60 | "shuffle_sunwarps": "true", | 60 | "shuffle_sunwarps": "true", |
61 | "sunwarp_access": "individual" | 61 | "sunwarp_access": "individual" |
62 | } \ No newline at end of file | 62 | } |
63 | |||
64 | |||
65 | class TestSpeedBoostMode(LingoTestBase): | ||
66 | options = { | ||
67 | "location_checks": "insanity", | ||
68 | "speed_boost_mode": "true", | ||
69 | } | ||