Fix station records error (#10631)

This commit is contained in:
Leon Friedrich
2022-08-16 16:15:00 +12:00
committed by GitHub
parent f47f8d5a1e
commit 8e7671541a

View File

@@ -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
/// <returns>All recently accessed keys from this record set.</returns>
public IEnumerable<StationRecordKey> GetRecentlyAccessed()
{
return _recentlyAccessed;
return _recentlyAccessed.ToArray();
}
/// <summary>