Auto Process Tweaks

This commit is contained in:
Brett Hewitson 2021-12-20 00:27:32 +10:00
parent e6f750c17c
commit aa265bfbb6
11 changed files with 321 additions and 181 deletions

View file

@ -415,7 +415,7 @@ namespace ServerManagerTool.Utils
task = Task.Run(() =>
{
app.PerformProfileShutdown(profile, true, false, false, token);
app.PerformProfileShutdown(profile, true, false, false, false, token);
_currentProfileCommands.Remove(key);
});
@ -516,7 +516,7 @@ namespace ServerManagerTool.Utils
task = Task.Run(() =>
{
app.PerformProfileShutdown(profile, false, false, false, token);
app.PerformProfileShutdown(profile, false, false, false, false, token);
_currentProfileCommands.Remove(key);
});
@ -618,7 +618,7 @@ namespace ServerManagerTool.Utils
task = Task.Run(() =>
{
app.PerformProfileShutdown(profile, false, false, false, token);
app.PerformProfileShutdown(profile, false, false, false, false, token);
_currentProfileCommands.Remove(key);
});
@ -720,7 +720,7 @@ namespace ServerManagerTool.Utils
task = Task.Run(() =>
{
app.PerformProfileShutdown(profile, true, false, false, token);
app.PerformProfileShutdown(profile, true, false, false, false, token);
_currentProfileCommands.Remove(key);
});
@ -824,7 +824,7 @@ namespace ServerManagerTool.Utils
task = Task.Run(() =>
{
app.PerformProfileShutdown(profile, performRestart, true, false, token);
app.PerformProfileShutdown(profile, performRestart, true, false, false, token);
_currentProfileCommands.Remove(key);
});