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:
Zack Middleton 2017-06-07 19:55:34 -05:00
parent 91acf8a681
commit eeb28dc1d0
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ DeathmatchScoreboardMessage
*/
void DeathmatchScoreboardMessage( gentity_t *ent ) {
char entry[1024];
char string[1400];
char string[1000];
int stringlength;
int i, j;
gclient_t *cl;