From fa2d633313e15fa6184026bf120656359bc22f07 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Thu, 10 Oct 2019 11:53:37 +0200 Subject: [PATCH] Remove PickUpVerb completely from held items. --- .../GameObjects/Components/Items/Storage/ItemComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameObjects/Components/Items/Storage/ItemComponent.cs b/Content.Server/GameObjects/Components/Items/Storage/ItemComponent.cs index 695d2fff6c..02c3e4f20e 100644 --- a/Content.Server/GameObjects/Components/Items/Storage/ItemComponent.cs +++ b/Content.Server/GameObjects/Components/Items/Storage/ItemComponent.cs @@ -88,7 +88,7 @@ namespace Content.Server.GameObjects { if (user.TryGetComponent(out HandsComponent hands) && hands.IsHolding(component.Owner)) { - return VerbVisibility.Disabled; + return VerbVisibility.Invisible; } return VerbVisibility.Visible;