diff --git a/OpenRA.Mods.Common/Widgets/Logic/Lobby/LobbyUtils.cs b/OpenRA.Mods.Common/Widgets/Logic/Lobby/LobbyUtils.cs index 9c0925bdfc..39c7793ed3 100644 --- a/OpenRA.Mods.Common/Widgets/Logic/Lobby/LobbyUtils.cs +++ b/OpenRA.Mods.Common/Widgets/Logic/Lobby/LobbyUtils.cs @@ -584,7 +584,7 @@ namespace OpenRA.Mods.Common.Widgets.Logic { var dropdown = parent.Get("HANDICAP_DROPDOWN"); dropdown.IsVisible = () => true; - dropdown.IsDisabled = () => s.LockTeam || orderManager.LocalClient.IsReady; + dropdown.IsDisabled = () => s.LockHandicap || orderManager.LocalClient.IsReady; dropdown.OnMouseDown = _ => ShowHandicapDropDown(dropdown, c, orderManager); var handicapLabel = new CachedTransform(h => $"{h}%");