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; }