From 3b894c7de4bd9f5360999ea6fb47cb6e2fa5dd84 Mon Sep 17 00:00:00 2001 From: juliangiebel Date: Wed, 12 Aug 2020 23:41:09 +0200 Subject: [PATCH] Add higher interaction priority to --- Content.Server/GameObjects/Components/AnchorableComponent.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Content.Server/GameObjects/Components/AnchorableComponent.cs b/Content.Server/GameObjects/Components/AnchorableComponent.cs index 6ad088bdbe..5ab4989660 100644 --- a/Content.Server/GameObjects/Components/AnchorableComponent.cs +++ b/Content.Server/GameObjects/Components/AnchorableComponent.cs @@ -14,6 +14,8 @@ namespace Content.Server.GameObjects.Components { public override string Name => "Anchorable"; + int IInteractUsing.Priority { get => 1; } + /// /// Checks if a tool can change the anchored status. ///