From 8cd41c770848a485a794b285d6930fea192b0e6f Mon Sep 17 00:00:00 2001 From: RavMorgan <48182970+RavMorgan@users.noreply.github.com> Date: Mon, 15 May 2023 23:34:13 +0300 Subject: [PATCH] [FIX] Stalin fix (#58) Co-authored-by: Mona Hmiza <> --- Content.Server/GameTicking/GameTicker.RoundFlow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameTicking/GameTicker.RoundFlow.cs b/Content.Server/GameTicking/GameTicker.RoundFlow.cs index 9e85cb3f6d..5f862a9557 100644 --- a/Content.Server/GameTicking/GameTicker.RoundFlow.cs +++ b/Content.Server/GameTicking/GameTicker.RoundFlow.cs @@ -222,7 +222,6 @@ namespace Content.Server.GameTicking var readyPlayerProfiles = new Dictionary(); var stalinBunkerEnabled = _configurationManager.GetCVar(WhiteCVars.StalinEnabled); - await _stalinManager.RefreshUsersData(); foreach (var (userId, status) in _playerGameStatuses) { @@ -231,6 +230,7 @@ namespace Content.Server.GameTicking if (stalinBunkerEnabled) { + await _stalinManager.RefreshUsersData(); var playerData = await _stalinManager.AllowEnter(session, false); if (!playerData.allow)