diff --git a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs index 2bef0d8701..fdf935d7c0 100644 --- a/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs +++ b/Content.Client/Administration/UI/CustomControls/PlayerListControl.xaml.cs @@ -52,6 +52,9 @@ namespace Content.Client.Administration.UI.CustomControls if (args == null || data is not PlayerListData {Info: var selectedPlayer}) return; + if (selectedPlayer == _selectedPlayer) + return; + if (args.Event.Function != EngineKeyFunctions.UIClick) return;