Skip to content

Commit

Permalink
:trollface:
Browse files Browse the repository at this point in the history
  • Loading branch information
deltanedas committed Sep 22, 2024
1 parent 76d140a commit 4d6af52
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ namespace Content.Server.StationRecords.Systems;
public sealed class StationRecordsSystem : SharedStationRecordsSystem
{
[Dependency] private readonly InventorySystem _inventory = default!;
[Dependency] private readonly SharedIdCardSystem _idCard = default!; // DeltaV
[Dependency] private readonly StationRecordKeyStorageSystem _keyStorage = default!;
[Dependency] private readonly IPrototypeManager _prototypeManager = default!;
[Dependency] private readonly IdCardSystem _idCard = default!;
Expand Down Expand Up @@ -155,6 +154,7 @@ public void CreateGeneralRecord(
Entity<IdCardComponent>? card = null;
if (idUid != null && _idCard.TryFindIdCard(idUid.Value, out var card2))
card = card2;

var record = new GeneralStationRecord()
{
Name = name,
Expand Down

0 comments on commit 4d6af52

Please sign in to comment.