diff --git a/IPA.Loader/Config/SelfConfig.cs b/IPA.Loader/Config/SelfConfig.cs index b47be047..6e72030c 100644 --- a/IPA.Loader/Config/SelfConfig.cs +++ b/IPA.Loader/Config/SelfConfig.cs @@ -44,16 +44,17 @@ namespace IPA.Config { switch (arg) { + case "--debug": + case "--mono-debug": + CommandLineValues.Debug.ShowDebug = true; + CommandLineValues.Debug.ShowCallSource = true; + break; case "--no-yeet": CommandLineValues.YeetMods = false; break; case "--condense-logs": CommandLineValues.Debug.CondenseModLogs = true; break; - case "--debug": - CommandLineValues.Debug.ShowDebug = true; - CommandLineValues.Debug.ShowCallSource = true; - break; case "--no-updates": CommandLineValues.Updates.AutoCheckUpdates = false; CommandLineValues.Updates.AutoUpdate = false;