diff --git a/Content.Server/Storage/EntitySystems/StorageSystem.cs b/Content.Server/Storage/EntitySystems/StorageSystem.cs index ac1da00792..af87eb8c1b 100644 --- a/Content.Server/Storage/EntitySystems/StorageSystem.cs +++ b/Content.Server/Storage/EntitySystems/StorageSystem.cs @@ -572,7 +572,7 @@ namespace Content.Server.Storage.EntitySystems var toInsert = hands.ActiveHandEntity; - if (!_sharedHandsSystem.TryDrop(player, toInsert.Value, handsComp: hands)) + if (!CanInsert(uid, toInsert.Value, storageComp) || !_sharedHandsSystem.TryDrop(player, toInsert.Value, handsComp: hands)) { Popup(uid, player, "comp-storage-cant-insert", storageComp); return false;