From 944b4fb073296fd49998430f57c9311c5ca91456 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto Date: Sat, 25 Dec 2021 02:10:32 +0100 Subject: [PATCH] Mapping command shows markers on the client. Bit of a hack to work around client-side only command permissions being broken. --- Content.Client/Commands/DebugCommands.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Client/Commands/DebugCommands.cs b/Content.Client/Commands/DebugCommands.cs index 799db2db84..0562447586 100644 --- a/Content.Client/Commands/DebugCommands.cs +++ b/Content.Client/Commands/DebugCommands.cs @@ -97,6 +97,7 @@ namespace Content.Client.Commands shell.ConsoleHost.RegisteredCommands["togglelight"].Execute(shell, string.Empty, Array.Empty()); shell.ConsoleHost.RegisteredCommands["showsubfloorforever"].Execute(shell, string.Empty, Array.Empty()); + shell.ConsoleHost.RegisteredCommands["showmarkers"].Execute(shell, string.Empty, Array.Empty()); shell.RemoteExecuteCommand(argStr); }