@@ -369,7 +369,7 @@ private async Task<bool> TryProcessLoginResult(Launcher.LoginResult loginResult,
369
369
370
370
try
371
371
{
372
- using var process = await StartGameAndAddon ( loginResult , isSteam , action == LoginAction . GameNoDalamud , action == LoginAction . GameNoThirdparty ) . ConfigureAwait ( false ) ;
372
+ using var process = await StartGameAndAddon ( loginResult , isSteam , action == LoginAction . GameNoDalamud , action == LoginAction . GameNoPlugins , action == LoginAction . GameNoThirdparty ) . ConfigureAwait ( false ) ;
373
373
374
374
if ( process is null )
375
375
throw new InvalidOperationException ( "Could not obtain Process Handle" ) ;
@@ -592,7 +592,7 @@ private async Task<bool> TryProcessLoginResult(Launcher.LoginResult loginResult,
592
592
}
593
593
}
594
594
595
- public async Task < Process > StartGameAndAddon ( Launcher . LoginResult loginResult , bool isSteam , bool forceNoDalamud , bool noThird )
595
+ public async Task < Process > StartGameAndAddon ( Launcher . LoginResult loginResult , bool isSteam , bool forceNoDalamud , bool noPlugins , bool noThird )
596
596
{
597
597
var dalamudOk = false ;
598
598
@@ -620,7 +620,7 @@ public async Task<Process> StartGameAndAddon(Launcher.LoginResult loginResult, b
620
620
var dalamudLauncher = new DalamudLauncher ( dalamudRunner , Program . DalamudUpdater ,
621
621
App . Settings . DalamudLoadMethod . GetValueOrDefault ( DalamudLoadMethod . DllInject ) , App . Settings . GamePath ,
622
622
App . Storage . Root , App . Storage . GetFolder ( "logs" ) , App . Settings . ClientLanguage ?? ClientLanguage . English ,
623
- App . Settings . DalamudLoadDelay , false , false , noThird , Troubleshooting . GetTroubleshootingJson ( ) ) ;
623
+ App . Settings . DalamudLoadDelay , false , noPlugins , noThird , Troubleshooting . GetTroubleshootingJson ( ) ) ;
624
624
625
625
try
626
626
{
0 commit comments