diff options
author | botn365 <42187820+botn365@users.noreply.github.com> | 2021-01-03 22:46:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-03 22:46:22 +0100 |
commit | 1585879e16a0bb0ce8614fa188d045ad93102231 (patch) | |
tree | 870b3b7bad3b7a2b9d0faeeef45dd0e4f753ffe4 /src/main/java/gregtech/api/util/GT_Utility.java | |
parent | 4f0e72c4c76a9454809f07f10ee0ad242f911b87 (diff) | |
download | GT5-Unofficial-1585879e16a0bb0ce8614fa188d045ad93102231.tar.gz GT5-Unofficial-1585879e16a0bb0ce8614fa188d045ad93102231.tar.bz2 GT5-Unofficial-1585879e16a0bb0ce8614fa188d045ad93102231.zip |
infinity chest compatibiltey
add more compatibilety for inventory that store more then a stack of items in 1 slot libe barrels and infinity chest
Diffstat (limited to 'src/main/java/gregtech/api/util/GT_Utility.java')
-rw-r--r-- | src/main/java/gregtech/api/util/GT_Utility.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/api/util/GT_Utility.java b/src/main/java/gregtech/api/util/GT_Utility.java index adc0f95881..6fb1dac37d 100644 --- a/src/main/java/gregtech/api/util/GT_Utility.java +++ b/src/main/java/gregtech/api/util/GT_Utility.java @@ -592,7 +592,7 @@ public class GT_Utility { return tTotalItemsMoved; } } - } while (tGrabInventorySize == 2 && tMovedItems > 0); //to suport draweres and barrels + } while (tMovedItems > 0); //suport inventorys thgat store motre then a stack in a aslot } if (aDoCheckChests && aTileEntity1 instanceof TileEntityChest) { TileEntityChest tTileEntity1 = (TileEntityChest) aTileEntity1; |