aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/oreprocessing/ProcessingStickLong.java
diff options
context:
space:
mode:
authormiozune <miozune@gmail.com>2023-09-09 23:26:57 +0900
committerGitHub <noreply@github.com>2023-09-09 16:26:57 +0200
commit6fffceea470bcede71582da257270ecfbbed27c6 (patch)
tree9be896efc15232b0610b57f05f39817e470fec95 /src/main/java/gregtech/loaders/oreprocessing/ProcessingStickLong.java
parent70ec7c6cb9dcd514c0de5626c7eb0c22aa91cb10 (diff)
downloadGT5-Unofficial-6fffceea470bcede71582da257270ecfbbed27c6.tar.gz
GT5-Unofficial-6fffceea470bcede71582da257270ecfbbed27c6.tar.bz2
GT5-Unofficial-6fffceea470bcede71582da257270ecfbbed27c6.zip
Deprecate GT_RecipeBuilder#noXXXYYY methods (#2284)
* Deprecate GT_RecipeBuilder#noXXXYYY methods * Remove existing references
Diffstat (limited to 'src/main/java/gregtech/loaders/oreprocessing/ProcessingStickLong.java')
-rw-r--r--src/main/java/gregtech/loaders/oreprocessing/ProcessingStickLong.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingStickLong.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingStickLong.java
index 869f2b34bb..586d5ad8aa 100644
--- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingStickLong.java
+++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingStickLong.java
@@ -47,7 +47,6 @@ public class ProcessingStickLong implements gregtech.api.interfaces.IOreRecipeRe
1000,
((int) Math.max(aMaterial.getMass(), 1L)) * calculateRecipeEU(aMaterial, 4)
/ 320))))
- .noFluidOutputs()
.duration(2 * ((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 4))
.addTo(sCutterRecipes);
@@ -63,7 +62,6 @@ public class ProcessingStickLong implements gregtech.api.interfaces.IOreRecipeRe
750,
((int) Math.max(aMaterial.getMass(), 1L)) * calculateRecipeEU(aMaterial, 4)
/ 426))))
- .noFluidOutputs()
.duration(2 * ((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 4))
.addTo(sCutterRecipes);
@@ -79,7 +77,6 @@ public class ProcessingStickLong implements gregtech.api.interfaces.IOreRecipeRe
250,
((int) Math.max(aMaterial.getMass(), 1L)) * calculateRecipeEU(aMaterial, 4)
/ 1280))))
- .noFluidOutputs()
.duration(((int) Math.max(aMaterial.getMass(), 1L)) * TICKS)
.eut(calculateRecipeEU(aMaterial, 4))
.addTo(sCutterRecipes);
@@ -105,8 +102,6 @@ public class ProcessingStickLong implements gregtech.api.interfaces.IOreRecipeRe
GT_Values.RA.stdBuilder()
.itemInputs(GT_Utility.copyAmount(1L, aStack), GT_Utility.getIntegratedCircuit(1))
.itemOutputs(GT_OreDictUnificator.get(OrePrefixes.spring, aMaterial, 1L))
- .noFluidInputs()
- .noFluidOutputs()
.duration(10 * SECONDS)
.eut(calculateRecipeEU(aMaterial, 16))
.addTo(sBenderRecipes);