Browse Source

Added better '--nowait' compatablility for IPA.exe

refactor
Anairkoen Schno 5 years ago
parent
commit
f9b6f4b1d6
1 changed files with 7 additions and 4 deletions
  1. +7
    -4
      IPA/Program.cs

+ 7
- 4
IPA/Program.cs View File

@ -203,10 +203,13 @@ namespace IPA {
}
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("Finished!");
Console.ResetColor();
Console.ReadLine();
if (!Environment.CommandLine.Contains("--nowait"))
{
Console.ForegroundColor = ConsoleColor.Green;
Console.WriteLine("Finished!");
Console.ResetColor();
Console.ReadLine();
}
}
private static void Revert(PatchContext context, string[] args = null) {


Loading…
Cancel
Save