From ee4ebe472759e91d511f3f151311f3a54e68051b Mon Sep 17 00:00:00 2001 From: Star Rauchenberger Date: Sun, 3 Dec 2023 18:06:11 -0500 Subject: Lingo: Default color shuffle to on (#2548) * Lingo: Default color shuffle on * Raise error if no progression in multiworld --- test/TestDoors.py | 9 ++++++--- test/TestProgressive.py | 3 ++- 2 files changed, 8 insertions(+), 4 deletions(-) (limited to 'test') diff --git a/test/TestDoors.py b/test/TestDoors.py index 5dc989a..f496c5f 100644 --- a/test/TestDoors.py +++ b/test/TestDoors.py @@ -3,7 +3,8 @@ from . import LingoTestBase class TestRequiredRoomLogic(LingoTestBase): options = { - "shuffle_doors": "complex" + "shuffle_doors": "complex", + "shuffle_colors": "false", } def test_pilgrim_first(self) -> None: @@ -49,7 +50,8 @@ class TestRequiredRoomLogic(LingoTestBase): class TestRequiredDoorLogic(LingoTestBase): options = { - "shuffle_doors": "complex" + "shuffle_doors": "complex", + "shuffle_colors": "false", } def test_through_rhyme(self) -> None: @@ -76,7 +78,8 @@ class TestRequiredDoorLogic(LingoTestBase): class TestSimpleDoors(LingoTestBase): options = { - "shuffle_doors": "simple" + "shuffle_doors": "simple", + "shuffle_colors": "false", } def test_requirement(self): diff --git a/test/TestProgressive.py b/test/TestProgressive.py index 026971c..917c6e7 100644 --- a/test/TestProgressive.py +++ b/test/TestProgressive.py @@ -81,7 +81,8 @@ class TestSimpleHallwayRoom(LingoTestBase): class TestProgressiveArtGallery(LingoTestBase): options = { - "shuffle_doors": "complex" + "shuffle_doors": "complex", + "shuffle_colors": "false", } def test_item(self): -- cgit 1.4.1