diff --git a/OpenRA.Mods.Common/ServerTraits/LobbyCommands.cs b/OpenRA.Mods.Common/ServerTraits/LobbyCommands.cs index 55a3731a8c..2ae63a11cc 100644 --- a/OpenRA.Mods.Common/ServerTraits/LobbyCommands.cs +++ b/OpenRA.Mods.Common/ServerTraits/LobbyCommands.cs @@ -1036,6 +1036,9 @@ namespace OpenRA.Mods.Common.Server var mapBuildRadius = rules.Actors["world"].TraitInfoOrDefault(); gs.AllyBuildRadius = mapBuildRadius != null && mapBuildRadius.AllyBuildRadiusEnabled; + var mapCreeps = rules.Actors["world"].TraitInfoOrDefault(); + gs.Creeps = mapCreeps != null && mapCreeps.Enabled; + var mapOptions = rules.Actors["world"].TraitInfo(); gs.ShortGame = mapOptions.ShortGameEnabled; gs.TechLevel = mapOptions.TechLevel;