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:
commit
28a89a26ad
@ -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 )
|
||||
|
Loading…
x
Reference in New Issue
Block a user