From eaee0a8a4c02b270d40ee55adeb9f16e7ab1bf8b Mon Sep 17 00:00:00 2001 From: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com> Date: Mon, 28 Feb 2022 16:38:33 +1100 Subject: [PATCH] Don't mapinit when mapping creates a blank map (#6928) --- Content.Server/GameTicking/Commands/MappingCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameTicking/Commands/MappingCommand.cs b/Content.Server/GameTicking/Commands/MappingCommand.cs index 94bba38fdf..e5401299d5 100644 --- a/Content.Server/GameTicking/Commands/MappingCommand.cs +++ b/Content.Server/GameTicking/Commands/MappingCommand.cs @@ -64,7 +64,7 @@ namespace Content.Server.GameTicking.Commands // either load a map or create a new one. if (args.Length == 0) - shell.ExecuteCommand($"addmap {mapId}"); + shell.ExecuteCommand($"addmap {mapId} false"); else shell.ExecuteCommand($"loadmap {mapId} \"{CommandParsing.Escape(args[0])}\"");