From: fgsfds Date: Thu, 27 Feb 2020 17:54:11 +0000 (+0300) Subject: reset warmup time instead of adding 1 second when no players present X-Git-Url: https://deadsoftware.ru/gitweb?p=d2df-sdl.git;a=commitdiff_plain;h=910c7e1b07e907561ba67d61b53bb49dd9f175e1 reset warmup time instead of adding 1 second when no players present --- diff --git a/src/game/g_game.pas b/src/game/g_game.pas index 94fe883..b899862 100644 --- a/src/game/g_game.pas +++ b/src/game/g_game.pas @@ -5203,7 +5203,7 @@ begin begin // wait a second until the fuckers finally decide to join gLMSRespawn := LMS_RESPAWN_WARMUP; - gLMSRespawnTime := gTime + 1000; + gLMSRespawnTime := gTime + gGameSettings.WarmupTime; gLMSSoftSpawn := NoMapRestart; Exit; end;