diff --git a/custom-chatcolors/scripting/custom-chatcolors.sp b/custom-chatcolors/scripting/custom-chatcolors.sp index cf5283fd..e29a05e3 100644 --- a/custom-chatcolors/scripting/custom-chatcolors.sp +++ b/custom-chatcolors/scripting/custom-chatcolors.sp @@ -2842,16 +2842,16 @@ stock bool ConfigForward(int client) stock bool MessageForward(int client, int author, char[] message) { Action result = Plugin_Continue; - + Call_StartForward(messageForward); Call_PushCell(client); Call_PushCell(author); Call_PushString(message); Call_Finish(result); - + if (result >= Plugin_Handled) return false; - + return true; }