diff --git a/OpenRA.Mods.Common/Widgets/Logic/Ingame/IngameMenuLogic.cs b/OpenRA.Mods.Common/Widgets/Logic/Ingame/IngameMenuLogic.cs index f0ba4e9882..72e5ec5672 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/Ingame/IngameMenuLogic.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/Ingame/IngameMenuLogic.cs @@ -242,7 +242,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic void CreateSurrenderButton() { - if (world.Type != WorldType.Regular || world.Map.Visibility.HasFlag(MapVisibility.MissionSelector) || world.LocalPlayer == null) + if (world.Type != WorldType.Regular || isSinglePlayer || world.LocalPlayer == null) return; Action onSurrender = () =>