mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 06:31:56 +00:00
fix a protocol breakage (with other clients)
This commit is contained in:
parent
cba9b3b5b1
commit
7c0eb6947d
1 changed files with 7 additions and 1 deletions
|
@ -44,8 +44,14 @@
|
|||
#define MAX_EDICTS 768
|
||||
#define MAX_LIGHTSTYLES 64
|
||||
#define MAX_DATAGRAM 1450
|
||||
//#define MAX_MSGLEN 1450
|
||||
|
||||
// Sorry, Mercury, this is needed (for now). Too many complaints about
|
||||
// oversized packets from non-qf qw clients :)
|
||||
#ifdef QUAKEWORLD
|
||||
#define MAX_MSGLEN 1450
|
||||
#else
|
||||
#define MAX_MSGLEN 8000
|
||||
#endif
|
||||
|
||||
#define clc_stringcmd 4
|
||||
|
||||
|
|
Loading…
Reference in a new issue