Fix Logistical Transporter Item Loss (#1353)

This commit is contained in:
dschub 2014-05-28 16:23:48 +02:00
parent 5a830699e7
commit 17c8874bc2

View file

@ -197,7 +197,7 @@ public final class InventoryUtils
if(sidedInventory.getStackInSlot(slotID) != null && sidedInventory.getStackInSlot(slotID).stackSize > 0)
{
ItemStack toSend = sidedInventory.getStackInSlot(slotID);
ItemStack toSend = sidedInventory.getStackInSlot(slotID).copy();
toSend.stackSize = 1;
if(sidedInventory.canExtractItem(slotID, toSend, side))