diff --git a/OpenRA.Mods.Common/Traits/World/SpawnMPUnits.cs b/OpenRA.Mods.Common/Traits/World/SpawnMPUnits.cs index edfa6d34d8..1b0db4dc1e 100644 --- a/OpenRA.Mods.Common/Traits/World/SpawnMPUnits.cs +++ b/OpenRA.Mods.Common/Traits/World/SpawnMPUnits.cs @@ -24,13 +24,13 @@ namespace OpenRA.Mods.Common.Traits public readonly string StartingUnitsClass = "none"; [Desc("Prevent the starting units option from being changed in the lobby.")] - public bool Locked = false; + public readonly bool Locked = false; [Desc("Whether to display the starting units option in the lobby.")] - public bool Visible = true; + public readonly bool Visible = true; [Desc("Display order for the starting units option in the lobby.")] - public int DisplayOrder = 0; + public readonly int DisplayOrder = 0; IEnumerable ILobbyOptions.LobbyOptions(Ruleset rules) {