fix: consistent CLI arg naming scheme

This commit is contained in:
goaaats 2023-01-08 00:47:15 +01:00
parent e153e73e77
commit e225f4df0e
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B

View file

@ -332,7 +332,7 @@ namespace Dalamud.Injector
startInfo.BootVehEnabled = true; startInfo.BootVehEnabled = true;
startInfo.BootVehFull = args.Contains("--veh-full"); startInfo.BootVehFull = args.Contains("--veh-full");
startInfo.NoLoadPlugins = args.Contains("--no-plugin"); startInfo.NoLoadPlugins = args.Contains("--no-plugin");
startInfo.NoLoadThirdPartyPlugins = args.Contains("--no-third-plugin"); startInfo.NoLoadThirdPartyPlugins = args.Contains("--no-3rd-plugin");
// startInfo.BootUnhookDlls = new List<string>() { "kernel32.dll", "ntdll.dll", "user32.dll" }; // startInfo.BootUnhookDlls = new List<string>() { "kernel32.dll", "ntdll.dll", "user32.dll" };
startInfo.CrashHandlerShow = args.Contains("--crash-handler-console"); startInfo.CrashHandlerShow = args.Contains("--crash-handler-console");