mirror of
https://github.com/ArchipelagoMW/Archipelago.git
synced 2026-08-05 12:46:15 -07:00
Co-authored-by: Aaron Wagener <[email protected]> Co-authored-by: Fabian Dill <[email protected]> Co-authored-by: Phar <[email protected]>
14 lines
332 B
Python
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)
|