From 5524d72fcf37d7af25d506476375328f107c2ece Mon Sep 17 00:00:00 2001 From: Dogan Date: Wed, 16 Oct 2019 22:20:39 +0200 Subject: [PATCH] Discord_UNLOZE: remove the cancer color for admin chat keep it the same as in game. looks much better. --- Discord_UNLOZE/scripting/Discord_UNLOZE.sp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Discord_UNLOZE/scripting/Discord_UNLOZE.sp b/Discord_UNLOZE/scripting/Discord_UNLOZE.sp index 714579b7..b1820b27 100644 --- a/Discord_UNLOZE/scripting/Discord_UNLOZE.sp +++ b/Discord_UNLOZE/scripting/Discord_UNLOZE.sp @@ -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; }