mirror of
https://github.com/DrBeef/ioq3quest.git
synced 2025-01-19 07:30:53 +00:00
Fix score info being dropped by server
Server drops reliable command string if it's length is more than 1022.
This commit is contained in:
parent
91acf8a681
commit
eeb28dc1d0
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ DeathmatchScoreboardMessage
|
||||||
*/
|
*/
|
||||||
void DeathmatchScoreboardMessage( gentity_t *ent ) {
|
void DeathmatchScoreboardMessage( gentity_t *ent ) {
|
||||||
char entry[1024];
|
char entry[1024];
|
||||||
char string[1400];
|
char string[1000];
|
||||||
int stringlength;
|
int stringlength;
|
||||||
int i, j;
|
int i, j;
|
||||||
gclient_t *cl;
|
gclient_t *cl;
|
||||||
|
|
Loading…
Reference in a new issue