ZombieManager: block sm_mzombie from console

This commit is contained in:
dogan 2020-08-08 18:58:25 +02:00
parent 2987042549
commit 0c35ff8841

View File

@ -289,6 +289,12 @@ public bool Filter_Motherzombies(const char[] sPattern, Handle hClients, int cli
public Action Command_DisplayMotherzombies(int client, int args)
{
if(client == 0)
{
ReplyToCommand(client, "[SM] Cannot use this from console.");
return Plugin_Handled;
}
char aBuf[1024];
char aBuf2[MAX_NAME_LENGTH];