diff --git a/Content.Client/Administration/UI/Logs/AdminLogsWindow.xaml.cs b/Content.Client/Administration/UI/Logs/AdminLogsWindow.xaml.cs index c085108d95..35cf7f1bc1 100644 --- a/Content.Client/Administration/UI/Logs/AdminLogsWindow.xaml.cs +++ b/Content.Client/Administration/UI/Logs/AdminLogsWindow.xaml.cs @@ -198,7 +198,7 @@ public partial class AdminLogsWindow : SS14Window private bool ShouldShowLog(AdminLogLabel label) { return SelectedTypes.Contains(label.Log.Type) && - SelectedPlayers.Overlaps(label.Log.Players) && + (SelectedPlayers.Count + label.Log.Players.Length == 0 || SelectedPlayers.Overlaps(label.Log.Players)) && SelectedImpacts.Contains(label.Log.Impact) && label.Log.Message.Contains(LogSearch.Text, StringComparison.OrdinalIgnoreCase); }