From eeb28dc1d0d7046a0176e926de3907b5b9cf3c96 Mon Sep 17 00:00:00 2001 From: Zack Middleton Date: Wed, 7 Jun 2017 19:55:34 -0500 Subject: [PATCH] Fix score info being dropped by server Server drops reliable command string if it's length is more than 1022. --- code/game/g_cmds.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/g_cmds.c b/code/game/g_cmds.c index dde25d91..70681c7c 100644 --- a/code/game/g_cmds.c +++ b/code/game/g_cmds.c @@ -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;