From e68fd8668d1af6dc9b53a012c5378fb69b4331ed Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto Date: Tue, 9 Nov 2021 15:10:23 +0100 Subject: [PATCH] Fix anchorable InteractUsing not cooperating with the rest of event handlers --- Content.Server/Construction/AnchorableSystem.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.Server/Construction/AnchorableSystem.cs b/Content.Server/Construction/AnchorableSystem.cs index c4041e349f..0195532bef 100644 --- a/Content.Server/Construction/AnchorableSystem.cs +++ b/Content.Server/Construction/AnchorableSystem.cs @@ -26,6 +26,9 @@ namespace Content.Server.Construction private async void OnInteractUsing(EntityUid uid, AnchorableComponent anchorable, InteractUsingEvent args) { + if (args.Handled) + return; + // If the used entity doesn't have a tool, return early. if (!EntityManager.TryGetComponent(args.Used.Uid, out ToolComponent? usedTool)) return;