Fix more build errors (#13100)
This commit is contained in:
@@ -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);
|
||||
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user