From 175612c330fe5750b86e8ba4e41ff6b731e055d5 Mon Sep 17 00:00:00 2001 From: Marek Kulik Date: Sun, 20 Dec 2015 20:28:45 +0100 Subject: [PATCH] Update CConsole.cpp Improve the log message in case a player has not enough permission to execute a command --- MTA10_Server/mods/deathmatch/logic/CConsole.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MTA10_Server/mods/deathmatch/logic/CConsole.cpp b/MTA10_Server/mods/deathmatch/logic/CConsole.cpp index ee7c0af5c1..6078f169b8 100644 --- a/MTA10_Server/mods/deathmatch/logic/CConsole.cpp +++ b/MTA10_Server/mods/deathmatch/logic/CConsole.cpp @@ -74,7 +74,7 @@ bool CConsole::HandleInput ( const char* szCommand, CClient* pClient, CClient* p } // Not enough access, tell the console - CLogger::LogPrintf ( "DENIED: Denied '%s' access to command '%s'\n", pClient->GetNick (), szKey ); + CLogger::LogPrintf ( "ACL: Denied '%s' access to command '%s'\n", pClient->GetNick (), szKey ); // Tell the client char szBuffer [128];