From e225f4df0ec3b225a40dfcf69e7bd0154e5376d1 Mon Sep 17 00:00:00 2001 From: goaaats Date: Sun, 8 Jan 2023 00:47:15 +0100 Subject: [PATCH] fix: consistent CLI arg naming scheme --- Dalamud.Injector/EntryPoint.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dalamud.Injector/EntryPoint.cs b/Dalamud.Injector/EntryPoint.cs index 11da5e6c0..d1ada5f64 100644 --- a/Dalamud.Injector/EntryPoint.cs +++ b/Dalamud.Injector/EntryPoint.cs @@ -332,7 +332,7 @@ namespace Dalamud.Injector startInfo.BootVehEnabled = true; startInfo.BootVehFull = args.Contains("--veh-full"); startInfo.NoLoadPlugins = args.Contains("--no-plugin"); - startInfo.NoLoadThirdPartyPlugins = args.Contains("--no-third-plugin"); + startInfo.NoLoadThirdPartyPlugins = args.Contains("--no-3rd-plugin"); // startInfo.BootUnhookDlls = new List() { "kernel32.dll", "ntdll.dll", "user32.dll" }; startInfo.CrashHandlerShow = args.Contains("--crash-handler-console");