From 1f2d2ca46bba45d3f82bf97ba073244943ff6b38 Mon Sep 17 00:00:00 2001 From: divverent Date: Fri, 9 Nov 2007 13:25:10 +0000 Subject: [PATCH] (Nexuiz) show people who are still downloading as -666 (like spectators) in scoreboard. Should get replaced by some way to completely hide them from scoreboard, but still show them in status, ping etc. git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7667 d7cf8633-e32d-0410-b094-e92efae38249 --- sv_main.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sv_main.c b/sv_main.c index d4e7485c..d824393b 100644 --- a/sv_main.c +++ b/sv_main.c @@ -1932,6 +1932,9 @@ static void SV_UpdateToReliableMessages (void) // frags host_client->frags = (int)host_client->edict->fields.server->frags; + if(gamemode == GAME_NEXUIZ) + if(!host_client->spawned) + host_client->frags = -666; if (host_client->old_frags != host_client->frags) { host_client->old_frags = host_client->frags; -- 2.39.2