From bf2f81b878f86583929b61dc5d1c417222f4cb4f Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Tue, 20 Dec 2022 17:55:35 +1300 Subject: [PATCH] Fix more build errors (#13100) --- .../Chemistry/EntitySystems/ChemistrySystemMixer.cs | 2 +- .../Xenoarchaeology/Equipment/Systems/NodeScannerSystem.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Content.Server/Chemistry/EntitySystems/ChemistrySystemMixer.cs b/Content.Server/Chemistry/EntitySystems/ChemistrySystemMixer.cs index 6f9cf3fd0c..9525821a2d 100644 --- a/Content.Server/Chemistry/EntitySystems/ChemistrySystemMixer.cs +++ b/Content.Server/Chemistry/EntitySystems/ChemistrySystemMixer.cs @@ -31,7 +31,7 @@ public sealed partial class ChemistrySystem if (!_solutions.TryGetMixableSolution(args.Target.Value, out solution)) return; - _popup.PopupEntity(Loc.GetString(component.MixMessage, ("mixed", Identity.Entity(args.Target.Value, EntityManager)), ("mixer", Identity.Entity(uid, EntityManager))), args.User, Filter.Entities(args.User)); ; + _popup.PopupEntity(Loc.GetString(component.MixMessage, ("mixed", Identity.Entity(args.Target.Value, EntityManager)), ("mixer", Identity.Entity(uid, EntityManager))), args.User, args.User); ; _solutions.UpdateChemicals(args.Target.Value, solution, true, component); diff --git a/Content.Server/Xenoarchaeology/Equipment/Systems/NodeScannerSystem.cs b/Content.Server/Xenoarchaeology/Equipment/Systems/NodeScannerSystem.cs index ee1d7f8edf..1b08696956 100644 --- a/Content.Server/Xenoarchaeology/Equipment/Systems/NodeScannerSystem.cs +++ b/Content.Server/Xenoarchaeology/Equipment/Systems/NodeScannerSystem.cs @@ -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); } }