Discord_UNLOZE: remove the cancer color for admin chat

keep it the same as in game. looks much better.
This commit is contained in:
Dogan 2019-10-16 22:20:39 +02:00
parent 85c37faf86
commit 5524d72fcf

View File

@ -149,7 +149,7 @@ public Action Command_PrintToAdminChat(int args)
{
bool bAdmin = CheckCommandAccess(i, "", ADMFLAG_GENERIC, true);
if (bAdmin)
CPrintToChat(i, "{azure}[DISCORD](ADMINS) %s: {white}%s", sArgs, sArgs2);
CPrintToChat(i, "{green}(DISCORD ADMINS) %s: {yellow}%s", sArgs, sArgs2);
}
}
return Plugin_Handled;
@ -163,7 +163,7 @@ public Action Command_PrintToAllChat(int args)
GetCmdArg(1, sArgs, sizeof(sArgs));
GetCmdArg(2, sArgs2, sizeof(sArgs2));
CPrintToChatAll("{azure}[DISCORD](ALL) %s: {white}%s", sArgs, sArgs2);
CPrintToChatAll("{azure}[DISCORD] (ALL) %s: {white}%s", sArgs, sArgs2);
return Plugin_Handled;
}