Update RobustToolbox

This commit is contained in:
DrSmugleaf
2021-02-07 14:56:08 +01:00
parent 7fbf2c9873
commit c479903538
3 changed files with 3 additions and 3 deletions

View File

@@ -97,7 +97,7 @@ namespace Content.Client.Commands
} }
#if DEBUG #if DEBUG
shell.WriteLine("WARNING: The client is using a debug build. You are risking losing your changes.", Color.Red); shell.WriteError("WARNING: The client is using a debug build. You are risking losing your changes.");
#endif #endif
shell.ConsoleHost.RegisteredCommands["togglelight"].Execute(shell, string.Empty, Array.Empty<string>()); shell.ConsoleHost.RegisteredCommands["togglelight"].Execute(shell, string.Empty, Array.Empty<string>());

View File

@@ -30,7 +30,7 @@ namespace Content.Server.Commands.GameTicking
} }
#if DEBUG #if DEBUG
shell.WriteLine("WARNING: The server is using a debug build. You are risking losing your changes.", Color.Red); shell.WriteError("WARNING: The server is using a debug build. You are risking losing your changes.");
#endif #endif
var mapManager = IoCManager.Resolve<IMapManager>(); var mapManager = IoCManager.Resolve<IMapManager>();