Browse Source

Reordered game argument order to make a bit more sense

pull/32/head
Anairkoen Schno 5 years ago
parent
commit
20663336b3
1 changed files with 5 additions and 4 deletions
  1. +5
    -4
      IPA.Loader/Config/SelfConfig.cs

+ 5
- 4
IPA.Loader/Config/SelfConfig.cs View File

@ -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;


Loading…
Cancel
Save