Fix not being able to take items out of storage (#1417)

This commit is contained in:
DrSmugleaf
2020-07-18 14:59:22 +02:00
committed by GitHub
parent e65c64af14
commit d9ce973af0

View File

@@ -370,7 +370,7 @@ namespace Content.Server.GameObjects.Components.Items.Storage
break; break;
} }
if (hands.CanPutInHand(item)) if (!hands.CanPutInHand(item))
{ {
break; break;
} }