Merge pull request #1359 from dschub/master

Fix Logistical Transporter Item Loss (#1353)
This commit is contained in:
Aidan 2014-05-30 08:02:15 -04:00
commit 05995dbaaa

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))