Co-authored-by: Aaron Wagener <mmmcheese158@gmail.com> Co-authored-by: Fabian Dill <Berserker66@users.noreply.github.com> Co-authored-by: Phar <zach@alliware.com>
		
			
				
	
	
		
			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)
 |