From 67106dedb9dff14a36060545aef0f4c310ad37f8 Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto <6766154+Zumorica@users.noreply.github.com> Date: Wed, 8 Jun 2022 09:50:23 +0200 Subject: [PATCH] ConstructionSystem handles InteractUsing before AnchorableSystem. (#8700) --- Content.Server/Construction/ConstructionSystem.Interactions.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Content.Server/Construction/ConstructionSystem.Interactions.cs b/Content.Server/Construction/ConstructionSystem.Interactions.cs index 54982e9b57..14a2fdea7d 100644 --- a/Content.Server/Construction/ConstructionSystem.Interactions.cs +++ b/Content.Server/Construction/ConstructionSystem.Interactions.cs @@ -1,6 +1,7 @@ using Content.Server.Construction.Components; using Content.Server.DoAfter; using Content.Shared.Construction; +using Content.Shared.Construction.EntitySystems; using Content.Shared.Construction.Steps; using Content.Shared.Interaction; using Robust.Shared.Containers; @@ -27,7 +28,7 @@ namespace Content.Server.Construction #endregion // Event handling. Add your subscriptions here! Just make sure they're all handled by EnqueueEvent. - SubscribeLocalEvent(EnqueueEvent); + SubscribeLocalEvent(EnqueueEvent, new []{typeof(AnchorableSystem)}); } ///