diff options
Diffstat (limited to 'test/__init__.py')
-rw-r--r-- | test/__init__.py | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/test/__init__.py b/test/__init__.py index 7ff456d..a4196de 100644 --- a/test/__init__.py +++ b/test/__init__.py | |||
@@ -6,12 +6,3 @@ from test.bases import WorldTestBase | |||
6 | class LingoTestBase(WorldTestBase): | 6 | class LingoTestBase(WorldTestBase): |
7 | game = "Lingo" | 7 | game = "Lingo" |
8 | player: ClassVar[int] = 1 | 8 | player: ClassVar[int] = 1 |
9 | |||
10 | def world_setup(self, *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) | ||