= Updated response method naming and formatting

This commit is contained in:
Matthew Cech
2019-06-19 21:17:08 -07:00
parent c7ad59b755
commit b0292666c0
63 changed files with 149 additions and 145 deletions
+2 -2
View File
@@ -46,7 +46,7 @@ public class CommandShutdown extends Command
if(isSafe)
{
// Force upkeep, this works so long as upkeep is on the main thread.
res.CallImmediate(LocStrings.stub("ShutdownSafe"));
res.sendImmediate(LocStrings.stub("ShutdownSafe"));
DatabaseManager.instance.upkeep();
GlobalLog.Warn(LogFilter.Command, LocStrings.Lookup("ShutdownSafe"));
@@ -54,7 +54,7 @@ public class CommandShutdown extends Command
}
else
{
res.CallImmediate(LocStrings.stub("ShutdownUnsafe"));// "``");
res.sendImmediate(LocStrings.stub("ShutdownUnsafe"));// "``");
GlobalLog.Warn(LogFilter.Command, LocStrings.Lookup("ShutdownSafe"));
System.exit(0);
}