mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
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
This commit is contained in:
parent
2c10084b45
commit
3931528beb
2 changed files with 0 additions and 6 deletions
|
@ -2693,9 +2693,7 @@ void CL_Init (void)
|
|||
Cmd_AddCommand ("windows", CL_Windows_f);
|
||||
#endif
|
||||
|
||||
#ifdef SPIKECOMMITTEDCLIGNORE
|
||||
Ignore_Init();
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue