From e673e607dce91586ab1f09d01b571a9ae65e73c5 Mon Sep 17 00:00:00 2001 From: Magnus Auvinen Date: Sun, 11 Jan 2009 14:32:23 +0000 Subject: fixed so that emoticon 0 works --- src/game/server/hooks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game/server') diff --git a/src/game/server/hooks.cpp b/src/game/server/hooks.cpp index 194fa6e1..f4ef4686 100644 --- a/src/game/server/hooks.cpp +++ b/src/game/server/hooks.cpp @@ -353,7 +353,7 @@ void mods_message(int msgtype, int client_id) { NETMSG_CL_EMOTICON *msg = (NETMSG_CL_EMOTICON *)rawmsg; - if(config.sv_spamprotection && p->last_emote+time_freq()*5 > time_get()) + if(config.sv_spamprotection && p->last_emote+time_freq()*3 > time_get()) return; p->last_emote = time_get(); -- cgit 1.4.1