Fix not showing any playerless logs when no players are selected
This commit is contained in:
@@ -198,7 +198,7 @@ public partial class AdminLogsWindow : SS14Window
|
|||||||
private bool ShouldShowLog(AdminLogLabel label)
|
private bool ShouldShowLog(AdminLogLabel label)
|
||||||
{
|
{
|
||||||
return SelectedTypes.Contains(label.Log.Type) &&
|
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) &&
|
SelectedImpacts.Contains(label.Log.Impact) &&
|
||||||
label.Log.Message.Contains(LogSearch.Text, StringComparison.OrdinalIgnoreCase);
|
label.Log.Message.Contains(LogSearch.Text, StringComparison.OrdinalIgnoreCase);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user