CSQC is standard now, and secure via the same md4 as a map currently has.
Particle system functions renamed a bit, a few other cleanups in that area. Console handling tweeked. Better rules for subconsoles and plugins. Commands are coloured if it'll be execed, which should help reduce occurences of chat being commands. tab compleation tweeked, partial compleation no longer changes the suggestion. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@895 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
2621cc6aad
commit
ce3c561cfe
46 changed files with 1058 additions and 773 deletions
|
@ -1241,7 +1241,7 @@ void CL_CheckServerInfo(void)
|
|||
==================
|
||||
CL_FullServerinfo_f
|
||||
|
||||
Sent by server when serverinfo changes
|
||||
Sent by server just after the svc_serverdata
|
||||
==================
|
||||
*/
|
||||
void CL_FullServerinfo_f (void)
|
||||
|
@ -1272,6 +1272,16 @@ void CL_FullServerinfo_f (void)
|
|||
}
|
||||
}
|
||||
CL_CheckServerInfo();
|
||||
|
||||
#ifdef CSQC_DAT
|
||||
p = Info_ValueForKey(cl.serverinfo, "*csprogs");
|
||||
if (*p) //only allow csqc if the server says so, and the 'checksum' matches.
|
||||
{
|
||||
unsigned int chksum = strtoul(p, NULL, 0);
|
||||
if (CSQC_Init(chksum))
|
||||
CL_SendClientCommand("enablecsqc");
|
||||
}
|
||||
#endif
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue