mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-11-10 06:31:47 +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 ) {
|
||||
char entry[1024];
|
||||
char string[1400];
|
||||
char string[1000];
|
||||
int stringlength;
|
||||
int i, j;
|
||||
gclient_t *cl;
|
||||
|
|
Loading…
Reference in a new issue