From 631c0068b9be27c33f18bda23a8e7e6147595fa8 Mon Sep 17 00:00:00 2001 From: Leon Friedrich <60421075+ElectroJr@users.noreply.github.com> Date: Tue, 15 Feb 2022 23:40:48 +1300 Subject: [PATCH] Fix alt click (#6722) --- Content.Shared/Interaction/SharedInteractionSystem.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Content.Shared/Interaction/SharedInteractionSystem.cs b/Content.Shared/Interaction/SharedInteractionSystem.cs index 64ef8048b3..3fdb55a867 100644 --- a/Content.Shared/Interaction/SharedInteractionSystem.cs +++ b/Content.Shared/Interaction/SharedInteractionSystem.cs @@ -171,6 +171,7 @@ namespace Content.Shared.Interaction // Perform alternative interactions, using context menu verbs. // These perform their own range, can-interact, and accessibility checks. AltInteract(user, target.Value); + return; } if (checkCanInteract && !_actionBlockerSystem.CanInteract(user, target))