File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -449,22 +449,22 @@ def executables(self) -> list[mobase.ExecutableInfo]:
449449 game_dir = self .gameDirectory ()
450450 bin_path = game_dir .absoluteFilePath (self .binaryName ())
451451 skip_start_screen = (
452- " -skipStartScreen" if self ._get_setting ("skipStartScreen" ) else ""
452+ "-skipStartScreen" if self ._get_setting ("skipStartScreen" ) else ""
453453 )
454454 return [
455455 # Default, runs REDmod deploy if necessary
456456 mobase .ExecutableInfo (
457- f"{ game_name } " ,
457+ f"{ game_name } (REDmod) " ,
458458 bin_path ,
459- ).withArgument (f"--launcher-skip -modded{ skip_start_screen } " ),
459+ ).withArgument (f"--launcher-skip -modded { skip_start_screen } " ),
460460 # Start game without REDmod
461461 mobase .ExecutableInfo (
462- f"{ game_name } - skip REDmod deploy " ,
462+ f"{ game_name } " ,
463463 bin_path ,
464464 ).withArgument (f"--launcher-skip { skip_start_screen } " ),
465465 # Deploy REDmods only
466466 mobase .ExecutableInfo (
467- "Manually deploy REDmod" ,
467+ "REDmod" ,
468468 self ._get_redmod_binary (),
469469 ).withArgument ("deploy -reportProgress -force %modlist%" ),
470470 # Launcher
You can’t perform that action at this time.
0 commit comments