From 8629ea2494687146cb5b80bc639bb51b12c2b4c9 Mon Sep 17 00:00:00 2001 From: zaCade <zaCade@hotmail.com> Date: Thu, 14 Jun 2018 16:37:23 +0200 Subject: [PATCH] ChatColors: Clear useless tabs, Oopsy. --- custom-chatcolors/scripting/custom-chatcolors.sp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; }