From e3779b28dcaf053f15067269cb02fbff96bf437b Mon Sep 17 00:00:00 2001 From: toaster Date: Tue, 10 Jul 2018 13:29:44 +0100 Subject: [PATCH] Correction to the bug that prevented starting a server. --- src/d_clisrv.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/d_clisrv.c b/src/d_clisrv.c index f1e49b832..d1d99ecb6 100644 --- a/src/d_clisrv.c +++ b/src/d_clisrv.c @@ -3749,7 +3749,7 @@ static void HandlePacketFromAwayNode(SINT8 node) /// Also, according to HandleConnect, the server will send the savegame even during intermission... /// Sryder 2018-07-05: If we don't want to send the player config another way we need to send the gamestate /// At almost any gamestate there could be joiners... So just always send gamestate? - cl_mode = CL_DOWNLOADSAVEGAME; + cl_mode = ((node == servernode) ? CL_CONNECTED : CL_DOWNLOADSAVEGAME); #else cl_mode = CL_CONNECTED; #endif