From 256b21fd89f204336d07ee5495e51aec4d09b94f Mon Sep 17 00:00:00 2001 From: shavit Date: Sun, 18 Mar 2018 02:19:21 +0200 Subject: [PATCH] Fixed ccmsg using ccname as the variable. --- addons/sourcemod/scripting/shavit-chat.sp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/sourcemod/scripting/shavit-chat.sp b/addons/sourcemod/scripting/shavit-chat.sp index cd0594db..124101be 100644 --- a/addons/sourcemod/scripting/shavit-chat.sp +++ b/addons/sourcemod/scripting/shavit-chat.sp @@ -700,7 +700,7 @@ public Action CP_OnChatMessage(int &author, ArrayList recipients, char[] flagstr if(gB_MessageEnabled[author]) { - strcopy(sMessage, MAXLENGTH_MESSAGE, gS_CustomName[author]); + strcopy(sMessage, MAXLENGTH_MESSAGE, gS_CustomMessage[author]); } }