From 0291c1be3e2ce64e8be5df973d6f087415f2180d Mon Sep 17 00:00:00 2001 From: JerryALT Date: Fri, 29 Mar 2024 20:24:41 +0300 Subject: [PATCH] [ServerCommand]: Removed 'Com_Printf' info. --- src/Components/Modules/ServerCommand.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Components/Modules/ServerCommand.cpp b/src/Components/Modules/ServerCommand.cpp index c80e21e..d9b6602 100644 --- a/src/Components/Modules/ServerCommand.cpp +++ b/src/Components/Modules/ServerCommand.cpp @@ -12,8 +12,8 @@ namespace Components void ServerCommand::DispatchServerCommand(const char* cmd, int cmdArgCount) { - Game::Com_Printf(0, "Command Name %s\n", cmd); - Game::Com_Printf(0, "Command Argument Count %d\n", cmdArgCount); + //Game::Com_Printf(0, "Command Name %s\n", cmd); + //Game::Com_Printf(0, "Command Argument Count %d\n", cmdArgCount); if (const auto itr = ServerCommands.begin(); itr != ServerCommands.end()) {