diff --git a/Content.Server/StationRecords/StationRecordSet.cs b/Content.Server/StationRecords/StationRecordSet.cs index 4958a2fc85..bc0bc5a427 100644 --- a/Content.Server/StationRecords/StationRecordSet.cs +++ b/Content.Server/StationRecords/StationRecordSet.cs @@ -1,4 +1,5 @@ using System.Diagnostics.CodeAnalysis; +using System.Linq; using Content.Shared.StationRecords; namespace Content.Server.StationRecords; @@ -123,7 +124,7 @@ public sealed class StationRecordSet /// All recently accessed keys from this record set. public IEnumerable GetRecentlyAccessed() { - return _recentlyAccessed; + return _recentlyAccessed.ToArray(); } ///