From 5ab4f4d9c9dd6493e4ec687725ac5d3588bd9d28 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Sun, 13 Feb 2022 17:34:28 +1300 Subject: [PATCH] Fix APC UI interaction. (#6683) --- Content.Shared/Interaction/SharedInteractionSystem.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 3c1dfd285c..66799a5e83 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -87,7 +87,7 @@ namespace Content.Shared.Interaction return; } - if (!user.InRangeUnobstructed(ev.Target)) + if (!InRangeUnobstructed(user, ev.Target, ignoreInsideBlocker: true)) { ev.Cancel(); return;