diff --git a/OpenRA.Mods.Common/ServerTraits/LobbyCommands.cs b/OpenRA.Mods.Common/ServerTraits/LobbyCommands.cs index 30361addf2..27d7d772c1 100644 --- a/OpenRA.Mods.Common/ServerTraits/LobbyCommands.cs +++ b/OpenRA.Mods.Common/ServerTraits/LobbyCommands.cs @@ -572,6 +572,9 @@ namespace OpenRA.Mods.Common.Server { "difficulty", s => { + if (!server.Map.Options.Difficulties.Any()) + return true; + if (!client.IsAdmin) { server.SendOrderTo(conn, "Message", "Only the host can set that option.");