From 3203fdfb7ffd3aa6f2580409191a40c80dea8f92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Aguilera=20Puerto?= Date: Thu, 20 Aug 2020 18:18:42 +0200 Subject: [PATCH] Fix fallback preset DisallowLateJoin not being taken into account --- Content.Server/GameTicking/GameTicker.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.Server/GameTicking/GameTicker.cs b/Content.Server/GameTicking/GameTicker.cs index 6ff0061c25..49fb6c7157 100644 --- a/Content.Server/GameTicking/GameTicker.cs +++ b/Content.Server/GameTicking/GameTicker.cs @@ -300,6 +300,9 @@ namespace Content.Server.GameTicking { throw new ApplicationException("Fallback preset failed to start!"); } + + DisallowLateJoin = false; + DisallowLateJoin |= newPreset.DisallowLateJoin; } _roundStartTimeSpan = IoCManager.Resolve().RealTime;