Files
Archipelago/worlds/lingo/test/__init__.py
T
ea9c31392d Lingo: New game (#1806)
Co-authored-by: Aaron Wagener <[email protected]>
Co-authored-by: Fabian Dill <[email protected]>
Co-authored-by: Phar <[email protected]>
2023-11-08 17:35:12 -06:00

14 lines
332 B
Python

from typing import ClassVar
from test.bases import WorldTestBase
from .. import LingoTestOptions
class LingoTestBase(WorldTestBase):
game = "Lingo"
player: ClassVar[int] = 1
def world_setup(self, *args, **kwargs):
LingoTestOptions.disable_forced_good_item = True
super().world_setup(*args, **kwargs)