diff options
author | miozune <miozune@gmail.com> | 2023-09-09 23:26:57 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-09 16:26:57 +0200 |
commit | 6fffceea470bcede71582da257270ecfbbed27c6 (patch) | |
tree | 9be896efc15232b0610b57f05f39817e470fec95 /src/main/java/gregtech/loaders/oreprocessing/ProcessingNugget.java | |
parent | 70ec7c6cb9dcd514c0de5626c7eb0c22aa91cb10 (diff) | |
download | GT5-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/ProcessingNugget.java')
-rw-r--r-- | src/main/java/gregtech/loaders/oreprocessing/ProcessingNugget.java | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/main/java/gregtech/loaders/oreprocessing/ProcessingNugget.java b/src/main/java/gregtech/loaders/oreprocessing/ProcessingNugget.java index 2406b5bb47..bdfa6cd58e 100644 --- a/src/main/java/gregtech/loaders/oreprocessing/ProcessingNugget.java +++ b/src/main/java/gregtech/loaders/oreprocessing/ProcessingNugget.java @@ -34,8 +34,6 @@ public class ProcessingNugget implements gregtech.api.interfaces.IOreRecipeRegis GT_Values.RA.stdBuilder() .itemInputs(GT_Utility.copyAmount(9L, aStack), ItemList.Shape_Mold_Ball.get(0L)) .itemOutputs(GT_OreDictUnificator.get(OrePrefixes.gem, aMaterial.mSmeltInto, 1L)) - .noFluidInputs() - .noFluidOutputs() .duration(10 * SECONDS) .eut(calculateRecipeEU(aMaterial, 2)) .addTo(sAlloySmelterRecipes); @@ -46,8 +44,6 @@ public class ProcessingNugget implements gregtech.api.interfaces.IOreRecipeRegis GT_Values.RA.stdBuilder() .itemInputs(GT_Utility.copyAmount(9L, aStack), ItemList.Shape_Mold_Ingot.get(0L)) .itemOutputs(GT_OreDictUnificator.get(OrePrefixes.ingot, aMaterial.mSmeltInto, 1L)) - .noFluidInputs() - .noFluidOutputs() .duration(10 * SECONDS) .eut(calculateRecipeEU(aMaterial, 2)) .addTo(sAlloySmelterRecipes); @@ -59,7 +55,6 @@ public class ProcessingNugget implements gregtech.api.interfaces.IOreRecipeRegis .itemInputs(ItemList.Shape_Mold_Nugget.get(0L)) .itemOutputs(GT_OreDictUnificator.get(OrePrefixes.nugget, aMaterial, 1L)) .fluidInputs(aMaterial.getMolten(16L)) - .noFluidOutputs() .duration(16 * TICKS) .eut(calculateRecipeEU(aMaterial, 4)) .addTo(sFluidSolidficationRecipes); @@ -76,8 +71,6 @@ public class ProcessingNugget implements gregtech.api.interfaces.IOreRecipeRegis GT_OreDictUnificator.get(OrePrefixes.ingot, aMaterial, 1L), ItemList.Shape_Mold_Nugget.get(0L)) .itemOutputs(GT_Utility.copyAmount(9L, aStack)) - .noFluidInputs() - .noFluidOutputs() .duration(5 * SECONDS) .eut(calculateRecipeEU(aMaterial, 1)) .addTo(sAlloySmelterRecipes); |