aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.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/postload/recipes/BreweryRecipes.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/postload/recipes/BreweryRecipes.java')
-rw-r--r--src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java58
1 files changed, 0 insertions, 58 deletions
diff --git a/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java
index 11f69a57f1..a188a9b420 100644
--- a/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java
+++ b/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java
@@ -35,7 +35,6 @@ public class BreweryRecipes implements Runnable {
// creosote to lubricant recipes
GT_Values.RA.stdBuilder()
.itemInputs(item)
- .noItemOutputs()
.fluidInputs(getFluidStack("creosote", 750))
.fluidOutputs(getFluidStack("lubricant", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -45,7 +44,6 @@ public class BreweryRecipes implements Runnable {
// seed oil to lubricant recipes
GT_Values.RA.stdBuilder()
.itemInputs(item)
- .noItemOutputs()
.fluidInputs(getFluidStack("seedoil", 750))
.fluidOutputs(getFluidStack("lubricant", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -56,7 +54,6 @@ public class BreweryRecipes implements Runnable {
{
GT_Values.RA.stdBuilder()
.itemInputs(item)
- .noItemOutputs()
.fluidInputs(getFluidStack("oil", 750))
.fluidOutputs(getFluidStack("lubricant", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -65,7 +62,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(item)
- .noItemOutputs()
.fluidInputs(getFluidStack("liquid_light_oil", 750))
.fluidOutputs(getFluidStack("lubricant", 500))
.duration(6 * SECONDS + 8 * TICKS)
@@ -74,7 +70,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(item)
- .noItemOutputs()
.fluidInputs(getFluidStack("liquid_medium_oil", 750))
.fluidOutputs(getFluidStack("lubricant", 500))
.duration(6 * SECONDS + 8 * TICKS)
@@ -83,7 +78,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(item)
- .noItemOutputs()
.fluidInputs(getFluidStack("liquid_heavy_oil", 500))
.fluidOutputs(getFluidStack("lubricant", 750))
.duration(3 * SECONDS + 4 * TICKS)
@@ -109,7 +103,6 @@ public class BreweryRecipes implements Runnable {
for (Fluid tFluid : waterArray) {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Milk, 1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("milk", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -118,7 +111,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Wheat, 1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.wheatyjuice", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -127,7 +119,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Potassium, 1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.mineralwater", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -136,7 +127,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sodium, 1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.mineralwater", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -145,7 +135,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Calcium, 1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.mineralwater", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -154,7 +143,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Magnesium, 1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.mineralwater", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -163,7 +151,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Glowstone, 1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.thick", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -172,7 +159,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Redstone, 1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -181,7 +167,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -190,7 +175,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Blaze, 1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -199,7 +183,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.magma_cream, 1, 0))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -208,7 +191,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.fermented_spider_eye, 1, 0))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -217,7 +199,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.spider_eye, 1, 0))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -226,7 +207,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.speckled_melon, 1, 0))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -235,7 +215,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.ghast_tear, 1, 0))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -244,7 +223,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.nether_wart, 1, 0))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.awkward", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -253,7 +231,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Blocks.red_mushroom, 1, 0))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.poison", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -262,7 +239,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.fish, 1, 3))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.poison.strong", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -272,7 +248,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.IC2_Grin_Powder.get(1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.poison.strong", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -281,7 +256,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.reeds, 1, 0))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.reedwater", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -290,7 +264,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.apple, 1, 0))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.applejuice", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -299,7 +272,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.golden_apple, 1, 0))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.goldenapplejuice", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -309,7 +281,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.golden_apple, 1, 1))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.idunsapplejuice", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -319,7 +290,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.IC2_Hops.get(1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.hopsjuice", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -328,7 +298,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Coffee, 1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.darkcoffee", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -337,7 +306,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Chili, 1L))
- .noItemOutputs()
.fluidInputs(new FluidStack(tFluid, 750))
.fluidOutputs(getFluidStack("potion.chillysauce", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -351,7 +319,6 @@ public class BreweryRecipes implements Runnable {
{
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Chili, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.chillysauce", 750))
.fluidOutputs(getFluidStack("potion.hotsauce", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -360,7 +327,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Chili, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.hotsauce", 750))
.fluidOutputs(getFluidStack("potion.diabolosauce", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -370,7 +336,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Chili, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.diabolosauce", 750))
.fluidOutputs(getFluidStack("potion.diablosauce", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -380,7 +345,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Coffee, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("milk", 750))
.fluidOutputs(getFluidStack("potion.coffee", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -389,7 +353,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Cocoa, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("milk", 750))
.fluidOutputs(getFluidStack("potion.darkchocolatemilk", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -398,7 +361,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.IC2_Hops.get(1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.wheatyjuice", 750))
.fluidOutputs(getFluidStack("potion.wheatyhopsjuice", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -407,7 +369,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Wheat, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.hopsjuice", 750))
.fluidOutputs(getFluidStack("potion.wheatyhopsjuice", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -416,7 +377,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.tea", 750))
.fluidOutputs(getFluidStack("potion.sweettea", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -426,7 +386,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.coffee", 750))
.fluidOutputs(getFluidStack("potion.cafeaulait", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -435,7 +394,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.cafeaulait", 750))
.fluidOutputs(getFluidStack("potion.laitaucafe", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -445,7 +403,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.lemonjuice", 750))
.fluidOutputs(getFluidStack("potion.lemonade", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -454,7 +411,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.darkcoffee", 750))
.fluidOutputs(getFluidStack("potion.darkcafeaulait", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -464,7 +420,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.darkchocolatemilk", 750))
.fluidOutputs(getFluidStack("potion.chocolatemilk", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -473,7 +428,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Ice, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.tea", 750))
.fluidOutputs(getFluidStack("potion.icetea", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -482,7 +436,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Gunpowder, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.lemonade", 750))
.fluidOutputs(getFluidStack("potion.cavejohnsonsgrenadejuice", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -492,7 +445,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.mundane", 750))
.fluidOutputs(getFluidStack("potion.purpledrink", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -502,7 +454,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.fermented_spider_eye, 1, 0))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.mundane", 750))
.fluidOutputs(getFluidStack("potion.weakness", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -511,7 +462,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.fermented_spider_eye, 1, 0))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.thick", 750))
.fluidOutputs(getFluidStack("potion.weakness", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -523,7 +473,6 @@ public class BreweryRecipes implements Runnable {
{
GT_Values.RA.stdBuilder()
.itemInputs(getModItem(Forestry.ID, "fertilizerBio", 4L, 0))
- .noItemOutputs()
.fluidInputs(GT_ModHandler.getWater(750L))
.fluidOutputs(getFluidStack("biomass", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -532,7 +481,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(getModItem(Forestry.ID, "mulch", 16L, 0))
- .noItemOutputs()
.fluidInputs(GT_ModHandler.getDistilledWater(750L))
.fluidOutputs(getFluidStack("biomass", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -541,7 +489,6 @@ public class BreweryRecipes implements Runnable {
GT_Values.RA.stdBuilder()
.itemInputs(getModItem(Forestry.ID, "mulch", 8L, 0))
- .noItemOutputs()
.fluidInputs(getFluidStack("juice", 500))
.fluidOutputs(getFluidStack("biomass", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -553,7 +500,6 @@ public class BreweryRecipes implements Runnable {
{
GT_Values.RA.stdBuilder()
.itemInputs(GT_ModHandler.getIC2Item("biochaff", 1))
- .noItemOutputs()
.fluidInputs(GT_ModHandler.getWater(1000L))
.fluidOutputs(getFluidStack("ic2biomass", 1000))
.duration(8 * SECONDS + 10 * TICKS)
@@ -564,7 +510,6 @@ public class BreweryRecipes implements Runnable {
if (IndustrialCraft2.isModLoaded()) {
GT_Values.RA.stdBuilder()
.itemInputs(GT_ModHandler.getIC2Item("biochaff", 1))
- .noItemOutputs()
.fluidInputs(GT_ModHandler.getDistilledWater(500L))
.fluidOutputs(getFluidStack("ic2biomass", 1000))
.duration(10 * TICKS)
@@ -591,7 +536,6 @@ public class BreweryRecipes implements Runnable {
// normal
GT_Values.RA.stdBuilder()
.itemInputs(aItem)
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.awkward", 750))
.fluidOutputs(getFluidStack("potion." + aName, 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -605,7 +549,6 @@ public class BreweryRecipes implements Runnable {
|| aName.equals("poison")) {
GT_Values.RA.stdBuilder()
.itemInputs(aItem)
- .noItemOutputs()
.fluidInputs(getFluidStack("potion.thick", 750))
.fluidOutputs(getFluidStack("potion." + aName + ".strong", 750))
.duration(6 * SECONDS + 8 * TICKS)
@@ -617,7 +560,6 @@ public class BreweryRecipes implements Runnable {
if (!aName.equals("health")) {
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Redstone, 1L))
- .noItemOutputs()
.fluidInputs(getFluidStack("potion." + aName, 750))
.fluidOutputs(getFluidStack("potion." + aName + ".long", 750))
.duration(6 * SECONDS + 8 * TICKS)