From d9ce973af0977656ca5daf46063bce3ec523f6cf Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Sat, 18 Jul 2020 14:59:22 +0200 Subject: [PATCH] Fix not being able to take items out of storage (#1417) --- .../Components/Items/Storage/ServerStorageComponent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Server/GameObjects/Components/Items/Storage/ServerStorageComponent.cs b/Content.Server/GameObjects/Components/Items/Storage/ServerStorageComponent.cs index f644e9da52..3c4b9575ab 100644 --- a/Content.Server/GameObjects/Components/Items/Storage/ServerStorageComponent.cs +++ b/Content.Server/GameObjects/Components/Items/Storage/ServerStorageComponent.cs @@ -370,7 +370,7 @@ namespace Content.Server.GameObjects.Components.Items.Storage break; } - if (hands.CanPutInHand(item)) + if (!hands.CanPutInHand(item)) { break; }