diff --git a/Content.Client/Viewport/GameScreenBase.cs b/Content.Client/Viewport/GameScreenBase.cs index fffcbed06c2..965334232f5 100644 --- a/Content.Client/Viewport/GameScreenBase.cs +++ b/Content.Client/Viewport/GameScreenBase.cs @@ -1,3 +1,4 @@ +using System; using System.Collections.Generic; using System.Collections.Immutable; using System.Linq; @@ -175,7 +176,7 @@ namespace Content.Client.Viewport } if (foundEntities.Count == 0) - return new List(); + return Array.Empty(); foundEntities.Sort(new ClickableEntityComparer(_entityManager)); // 0 is the top element.