* Ensure that included/starter songs only include those within enabled dlcs. * Allow filtering traps by trap instead of by category. * Add in the currently available limited time dlcs to the dlc list. * Add the option group to the webhost and cleanup some errors. * Fix trap list. * Update tests. Add new ones to test correctness of new features. * Remove the old Just As Planned option * Make traps order alphabetically. Also adjust the title for traps. * Adjust new lines to better fit the website. * Style fixes. * Test adjustments and a fix due to test no longer having just as planned dlc. * Undo spacing changes as it breaks yaml generation. * Fix indenting in webhost. * Add the old options in as removed. Also clean up unused import. * Remove references to the old allow_just_as_planned_dlc_songs option in Muse Dash tests. * Add newline to end of file. --------- Co-authored-by: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com>
		
			
				
	
	
		
			11 lines
		
	
	
		
			259 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			259 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| from test.bases import WorldTestBase
 | |
| from .. import MuseDashWorld
 | |
| from typing import cast
 | |
| 
 | |
| class MuseDashTestBase(WorldTestBase):
 | |
|     game = "Muse Dash"
 | |
| 
 | |
|     def get_world(self) -> MuseDashWorld:
 | |
|         return cast(MuseDashWorld, self.multiworld.worlds[1])
 | |
| 
 |