From 3931528beb1d4199db63a9fa6e3c7e8a56b6124d Mon Sep 17 00:00:00 2001 From: Spoike Date: Thu, 1 Dec 2005 01:22:25 +0000 Subject: [PATCH] Removed timeserv's precompiler protection around files I forgot to add. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1646 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- engine/client/cl_main.c | 2 -- engine/client/cl_parse.c | 4 ---- 2 files changed, 6 deletions(-) diff --git a/engine/client/cl_main.c b/engine/client/cl_main.c index 033a341c5..301ac1460 100644 --- a/engine/client/cl_main.c +++ b/engine/client/cl_main.c @@ -2693,9 +2693,7 @@ void CL_Init (void) Cmd_AddCommand ("windows", CL_Windows_f); #endif -#ifdef SPIKECOMMITTEDCLIGNORE Ignore_Init(); -#endif } diff --git a/engine/client/cl_parse.c b/engine/client/cl_parse.c index 8b57f35ab..deb043300 100644 --- a/engine/client/cl_parse.c +++ b/engine/client/cl_parse.c @@ -20,9 +20,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. // cl_parse.c -- parse a message received from the server #include "quakedef.h" -#ifdef SPIKECOMMITTEDCLIGNORE #include "cl_ignore.h" -#endif void CL_GetNumberedEntityInfo (int num, float *org, float *ang); void CLNQ_ParseDarkPlaces5Entities(void); @@ -3101,13 +3099,11 @@ char *CL_ParseChat(char *text, player_info_t **player) if ((int)msg_filter.value & flags) return NULL; //filter chat -#ifdef SPIKECOMMITTEDCLIGNORE check_flood = Ignore_Check_Flood(s, flags, offset); if (check_flood == IGNORE_NO_ADD) return NULL; else if (check_flood == NO_IGNORE_ADD) Ignore_Flood_Add(s); -#endif } suppress_talksound = false;