aboutsummaryrefslogtreecommitdiff
path: root/src/main/java
diff options
context:
space:
mode:
authorchochem <40274384+chochem@users.noreply.github.com>2023-06-10 05:32:18 +0100
committerGitHub <noreply@github.com>2023-06-10 06:32:18 +0200
commit59f3a6905e6a831b9cc67ebd4ce169678abf5495 (patch)
treeb0bc5e4b7fc13a67f832e3166887a9c96d36624f /src/main/java
parent9b98654db3a0beb00588058b492afe6fa4baaa3e (diff)
downloadGT5-Unofficial-59f3a6905e6a831b9cc67ebd4ce169678abf5495.tar.gz
GT5-Unofficial-59f3a6905e6a831b9cc67ebd4ce169678abf5495.tar.bz2
GT5-Unofficial-59f3a6905e6a831b9cc67ebd4ce169678abf5495.zip
fix wrong input amount (#2071)
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingCell.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCell.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCell.java
index 8b50a4ab97..55887eaf6f 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingCell.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingCell.java
@@ -141,7 +141,7 @@ public class ProcessingCell implements IOreRecipeRegistrator {
if (tCellBalance > 0L) {
recipeBuilder.itemInputs(aStack, ItemList.Cell_Empty.get(tCellBalance));
} else {
- recipeBuilder.itemInputs(GT_Utility.copyAmount(tItemAmount, aStack));
+ recipeBuilder.itemInputs(aStack);
}
if (tCellBalance < 0L) {
tList.add(ItemList.Cell_Empty.get(-tCellBalance));