diff options
author | Dakota Jones <73182109+greesyB@users.noreply.github.com> | 2022-12-15 08:46:41 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-15 15:46:41 +0100 |
commit | a19cfb274682ced504056c3135122e21f1022961 (patch) | |
tree | f7a8444011270d19d47d687766b062023c54d7bb /src/main/java/gregtech/common | |
parent | 4cfe8d9cbf083a2931557aca3bd577f182733912 (diff) | |
download | GT5-Unofficial-a19cfb274682ced504056c3135122e21f1022961.tar.gz GT5-Unofficial-a19cfb274682ced504056c3135122e21f1022961.tar.bz2 GT5-Unofficial-a19cfb274682ced504056c3135122e21f1022961.zip |
Fix ore factory stocking bus integration (#1551)
Diffstat (limited to 'src/main/java/gregtech/common')
-rw-r--r-- | src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_IntegratedOreFactory.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_IntegratedOreFactory.java b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_IntegratedOreFactory.java index 092e802526..ef52c069e7 100644 --- a/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_IntegratedOreFactory.java +++ b/src/main/java/gregtech/common/tileentities/machines/multi/GT_MetaTileEntity_IntegratedOreFactory.java @@ -289,7 +289,7 @@ public class GT_MetaTileEntity_IntegratedOreFactory ore.stackSize = 0; } else { tRealUsed = tCharged; - tOres.add(GT_Utility.copyAmount(tCharged, ore)); + tOres.add(GT_Utility.copyAmountUnsafe(tCharged, ore)); ore.stackSize -= tCharged; tCharged = 0; break; |