diff --git a/src/XIVLauncher/App.xaml.cs b/src/XIVLauncher/App.xaml.cs index 592b093c7..939b250bb 100644 --- a/src/XIVLauncher/App.xaml.cs +++ b/src/XIVLauncher/App.xaml.cs @@ -316,7 +316,11 @@ private void App_OnStartup(object sender, StartupEventArgs e) try { var helpWriter = new StringWriter(); - var parser = new Parser(config => config.HelpWriter = helpWriter); + var parser = new Parser(config => + { + config.HelpWriter = helpWriter; + config.IgnoreUnknownArguments = true; + }); var result = parser.ParseArguments(Environment.GetCommandLineArgs()); if (result.Errors.Any())