1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-04-05 18:26:58 +00:00

Merge pull request #342 from SquidDev-CC/hotfix/turtle-suck

Replace direct equality with InventoryUtil.areItemsEqual
This commit is contained in:
Daniel Ratcliffe 2017-06-28 22:12:30 +01:00 committed by GitHub
commit 28a89a26ad

View File

@ -163,13 +163,13 @@ public class InventoryUtil
}
// Inspect the slots in order and try to find empty or stackable slots
ItemStack remainder = stack;
ItemStack remainder = stack.copy();
for( int slot : slots )
{
if( remainder == null ) break;
remainder = inventory.insertItem( slot, remainder, false );
}
return remainder;
return areItemsEqual( stack, remainder ) ? stack : remainder;
}
private static ItemStack takeItems( int count, IItemHandler inventory, int[] slots )