diff options
author | Star Rauchenberger <fefferburbia@gmail.com> | 2023-12-18 10:46:24 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-18 09:46:24 -0600 |
commit | 1298dce3db9571a0907404cd3af09df948255d9e (patch) | |
tree | d264a998089d8f4a5b6833220d276bf9629d2a47 /test/__init__.py | |
parent | 99128f67a3b4478a5561b1ba33a2f3588a61a1df (diff) | |
download | lingo-apworld-1298dce3db9571a0907404cd3af09df948255d9e.tar.gz lingo-apworld-1298dce3db9571a0907404cd3af09df948255d9e.tar.bz2 lingo-apworld-1298dce3db9571a0907404cd3af09df948255d9e.zip |
Lingo: Tests no longer disable forced good item (#2602)
The static class with the "disable forced good item" field is gone. Now, certain tests that want to check for specific access progression can run a method that removes the forced good item and adds it back to the pool. Tests that don't care about this will collect the forced good item like normal. This should prevent the intermittent fill failures on complex doors unit tests, since the forced good item should provide enough locations to fill in.
Diffstat (limited to 'test/__init__.py')
-rw-r--r-- | test/__init__.py | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/test/__init__.py b/test/__init__.py index ffbf903..7ff456d 100644 --- a/test/__init__.py +++ b/test/__init__.py | |||
@@ -1,7 +1,6 @@ | |||
1 | from typing import ClassVar | 1 | from typing import ClassVar |
2 | 2 | ||
3 | from test.bases import WorldTestBase | 3 | from test.bases import WorldTestBase |
4 | from .. import LingoTestOptions | ||
5 | 4 | ||
6 | 5 | ||
7 | class LingoTestBase(WorldTestBase): | 6 | class LingoTestBase(WorldTestBase): |
@@ -9,5 +8,10 @@ class LingoTestBase(WorldTestBase): | |||
9 | player: ClassVar[int] = 1 | 8 | player: ClassVar[int] = 1 |
10 | 9 | ||
11 | def world_setup(self, *args, **kwargs): | 10 | def world_setup(self, *args, **kwargs): |
12 | LingoTestOptions.disable_forced_good_item = True | ||
13 | super().world_setup(*args, **kwargs) | 11 | super().world_setup(*args, **kwargs) |
12 | |||
13 | def remove_forced_good_item(self): | ||
14 | location = self.multiworld.get_location("Second Room - Good Luck", self.player) | ||
15 | self.remove(location.item) | ||
16 | self.multiworld.itempool.append(location.item) | ||
17 | self.multiworld.state.events.add(location) | ||