From a9e44770cf7f35fbc55227c5674334ea5ac53c9f Mon Sep 17 00:00:00 2001 From: Vera Aguilera Puerto Date: Sat, 25 Sep 2021 10:44:54 +0200 Subject: [PATCH] Stack respects InteractUsing handled. --- Content.Server/Stack/StackSystem.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Content.Server/Stack/StackSystem.cs b/Content.Server/Stack/StackSystem.cs index 483221de99..d1a979231c 100644 --- a/Content.Server/Stack/StackSystem.cs +++ b/Content.Server/Stack/StackSystem.cs @@ -73,6 +73,9 @@ namespace Content.Server.Stack private void OnStackInteractUsing(EntityUid uid, StackComponent stack, InteractUsingEvent args) { + if (args.Handled) + return; + if (!args.Used.TryGetComponent(out var otherStack)) return;