From 10db26fa0b3df25e679b465475fe69b21381b26b Mon Sep 17 00:00:00 2001 From: Paul Chote Date: Sun, 2 Nov 2025 15:28:13 +0000 Subject: [PATCH] Disable lobby options tab if options aren't yet known. --- OpenRA.Mods.Common/Widgets/Logic/Lobby/LobbyLogic.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/OpenRA.Mods.Common/Widgets/Logic/Lobby/LobbyLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/Lobby/LobbyLogic.cs index 158efcfc02..9276d17e49 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/Lobby/LobbyLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/Lobby/LobbyLogic.cs @@ -601,7 +601,8 @@ namespace OpenRA.Mods.Common.Widgets.Logic bool OptionsTabDisabled() { - return !MapIsPlayable || panel == PanelType.Kick || panel == PanelType.ForceStart; + return map.Status == MapStatus.Unavailable || map.Status == MapStatus.Searching || + !MapIsPlayable || panel == PanelType.Kick || panel == PanelType.ForceStart; } public override void Tick()