Fix more build errors (#13100)

This commit is contained in:
Leon Friedrich
2022-12-20 17:55:35 +13:00
committed by GitHub
parent 076d8c5a40
commit bf2f81b878
2 changed files with 3 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
using Content.Server.Popups;
using Content.Server.Popups;
using Content.Server.Xenoarchaeology.Equipment.Components;
using Content.Server.Xenoarchaeology.XenoArtifacts;
using Content.Shared.Interaction;
@@ -33,6 +33,6 @@ public sealed class NodeScannerSystem : EntitySystem
var target = args.Target.Value;
_useDelay.BeginDelay(uid);
_popupSystem.PopupEntity(Loc.GetString("node-scan-popup",
("id", $"{artifact.CurrentNode.Id}")), target, Filter.Pvs(target));
("id", $"{artifact.CurrentNode.Id}")), target);
}
}