aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java
diff options
context:
space:
mode:
authormiozune <miozune@gmail.com>2023-12-04 05:34:27 +0900
committerGitHub <noreply@github.com>2023-12-03 21:34:27 +0100
commitf74c7cc297d1d19d38a19683cd277ad9ce605d3a (patch)
treeb2a5d66ec5a959099240fb1db239ffc0f9531839 /src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java
parentb08cde7de4ec93cba05fb070991ad1dffb800ce1 (diff)
downloadGT5-Unofficial-f74c7cc297d1d19d38a19683cd277ad9ce605d3a.tar.gz
GT5-Unofficial-f74c7cc297d1d19d38a19683cd277ad9ce605d3a.tar.bz2
GT5-Unofficial-f74c7cc297d1d19d38a19683cd277ad9ce605d3a.zip
Refactor RecipeMap (#2345)
* Remove deprecated and unused things * Move recipemap subclasses * Move GT_Recipe_Map to outside and rename to RecipeMap * Move recipemap instances to separated class & remove prepending s * Remove useless GT_Recipe constructors * Always use ModularUI * Rename IGT_RecipeMap -> IRecipeMap * Add RecipeMapBuilder * Remove more deprecated and unused things * Fix RecipeMap type parameters * Use multimap for recipe index * Fix bending recipe error in dev env * Remove mUniqueIdentifier * Update AE2FC * Less edgy texture for NEI recipe background * Add replicator fluid output slot for NEI and machine GUI * Fix fluid fuels not having fuel value in large boilers * Remove GT_RectHandler and NEI_TransferRectHost * Remove RecipeMapHandler * Move NEI energy description from RecipeMapFrontend to Power * Refactor the way to filter fusion recipes * Check restriction for some properties * Remove showVoltageAmperage * Make Power accept GT_Recipe * Fix NPE * Move NEI duration description to Power from Frontend * Directly implement IRecipeProcessingAwareHatch for GT_MetaTileEntity_Hatch_InputBus_ME * Make Power integrated with GT_OverclockCalculator * Rename Power -> OverclockDescriber * Don't modify recipe find logic until postload finishes * Reformat reserved MTE ids * Fix check for too few inputs on recipe addition * Move replicator logic to backend * Stop un-hiding assline recipes * Allow setting custom recipe comparator & implement for fusion * Update AE2FC * Rename getRecipeList and getRecipes -> getRecipeMap * Automatically register recipe catalysts * Cleanup the way to detect recipe collision * Make use of BasicUIProperties for basic machines * Make use of BasicUIProperties for UIHelper * Rename specialHandler -> recipeTransformer * Add way to automatically register handler info * Add recipe category * Add some APIs for addons * Rename blastRecipes -> blastFurnaceRecipes * Remove GT_MetaTileEntity_BasicMachine_GT_Recipe#mSharedTank and #mRequiresFluidForFiltering * Don't require setting duration and EU/t for fuel recipes * Don't require setting EU/t for primitive blast furnace recipes * Revert change to addMultiblockChemicalRecipe * Fix large boiler general desc recipe not being added * Hide duration and EU/t from large boiler * Cleanup recipe stacktrace draw * Extend metadata usage of recipe builder to recipe itself * Implement metadata handling & NEI comparator for PCB factory * Some rename around NEIRecipeInfo * Some toString implementations * Add more APIs for addons & some rename * Infer handler icon from recipe catalyst if one is not set * Also shrink recipe title when OC is not used * Remove rare earth centrifuge recipe * Use metadata for replicator backend * Adjust geothermal generator output slot * Allow having multiple transferrects * Store recipemap reference in backend * Rename vacuumRecipes -> vacuumFreezerRecipes * Add config to tweak visibility of recipe categories * Remove mHideRecyclingRecipes in favor of recipe category config * Fix typo fluidSolidfierRecipes -> fluidSolidifierRecipes * Refactor findRecipe and ProcessingLogic to use Stream * Fix BBF handler icon & remove bronze blast furnace * Add fluent API for findRecipe * Add way to stop adding progressbar * Change arg order for special texture * Avoid overwriting interesting failure with NO_RECIPE * Some changes for FuelBackend * Set space project icon * Remove localization from TT * Remove CNC recipe adder * Move recipe extractor from AE2FC * Minor internal change for ProcessingLogic#applyRecipe * More javadoc on #getAvailableRecipeMaps * Better implementation of #ofSupplier * Move replicator exponent config to GT_Proxy * Remove RC & IC2 macerator handling * Rename StreamUtil -> GT_StreamUtil * Refactor code around RecipeMetadataStorage * Revise #compileRecipe javadoc * Switch extreme diesel recipe loader to downstream recipe map * Optimize #reMap * Rename reload -> reloadNEICache * Minor tweak for drawEnergyInfo * a bit more doc * Adjust recipe catalysts * Add toString implementation for GT_Fluid for debug * Minor revision for OilCrackerBackend * Index replicator recipes by material --------- Co-authored-by: Glease <4586901+Glease@users.noreply.github.com>
Diffstat (limited to 'src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java')
-rw-r--r--src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java118
1 files changed, 59 insertions, 59 deletions
diff --git a/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java b/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java
index a188a9b420..e5972f4e77 100644
--- a/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java
+++ b/src/main/java/gregtech/loaders/postload/recipes/BreweryRecipes.java
@@ -2,8 +2,8 @@ package gregtech.loaders.postload.recipes;
import static gregtech.api.enums.Mods.Forestry;
import static gregtech.api.enums.Mods.IndustrialCraft2;
+import static gregtech.api.recipe.RecipeMaps.brewingRecipes;
import static gregtech.api.util.GT_ModHandler.getModItem;
-import static gregtech.api.util.GT_Recipe.GT_Recipe_Map.sBrewingRecipes;
import static gregtech.api.util.GT_RecipeBuilder.SECONDS;
import static gregtech.api.util.GT_RecipeBuilder.TICKS;
import static net.minecraftforge.fluids.FluidRegistry.getFluidStack;
@@ -39,7 +39,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("lubricant", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
// seed oil to lubricant recipes
GT_Values.RA.stdBuilder()
@@ -48,7 +48,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("lubricant", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
// lubricant recipes
{
@@ -58,7 +58,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("lubricant", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(item)
@@ -66,7 +66,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("lubricant", 500))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(item)
@@ -74,7 +74,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("lubricant", 500))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(item)
@@ -82,7 +82,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("lubricant", 750))
.duration(3 * SECONDS + 4 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
}
}
@@ -107,7 +107,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("milk", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Wheat, 1L))
@@ -115,7 +115,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.wheatyjuice", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Potassium, 1L))
@@ -123,7 +123,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.mineralwater", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sodium, 1L))
@@ -131,7 +131,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.mineralwater", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Calcium, 1L))
@@ -139,7 +139,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.mineralwater", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Magnesium, 1L))
@@ -147,7 +147,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.mineralwater", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Glowstone, 1L))
@@ -155,7 +155,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.thick", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Redstone, 1L))
@@ -163,7 +163,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
@@ -171,7 +171,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Blaze, 1L))
@@ -179,7 +179,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.magma_cream, 1, 0))
@@ -187,7 +187,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.fermented_spider_eye, 1, 0))
@@ -195,7 +195,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.spider_eye, 1, 0))
@@ -203,7 +203,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.speckled_melon, 1, 0))
@@ -211,7 +211,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.ghast_tear, 1, 0))
@@ -219,7 +219,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.mundane", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.nether_wart, 1, 0))
@@ -227,7 +227,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.awkward", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Blocks.red_mushroom, 1, 0))
@@ -235,7 +235,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.poison", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.fish, 1, 3))
@@ -244,7 +244,7 @@ public class BreweryRecipes implements Runnable {
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
.hidden()
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.IC2_Grin_Powder.get(1L))
@@ -252,7 +252,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.poison.strong", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.reeds, 1, 0))
@@ -260,7 +260,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.reedwater", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.apple, 1, 0))
@@ -268,7 +268,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.applejuice", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.golden_apple, 1, 0))
@@ -277,7 +277,7 @@ public class BreweryRecipes implements Runnable {
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
.hidden()
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.golden_apple, 1, 1))
@@ -286,7 +286,7 @@ public class BreweryRecipes implements Runnable {
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
.hidden()
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.IC2_Hops.get(1L))
@@ -294,7 +294,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.hopsjuice", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Coffee, 1L))
@@ -302,7 +302,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.darkcoffee", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Chili, 1L))
@@ -310,7 +310,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.chillysauce", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
}
}
@@ -323,7 +323,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.hotsauce", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Chili, 1L))
@@ -332,7 +332,7 @@ public class BreweryRecipes implements Runnable {
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
.hidden()
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Chili, 1L))
@@ -341,7 +341,7 @@ public class BreweryRecipes implements Runnable {
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
.hidden()
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Coffee, 1L))
@@ -349,7 +349,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.coffee", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Cocoa, 1L))
@@ -357,7 +357,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.darkchocolatemilk", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(ItemList.IC2_Hops.get(1L))
@@ -365,7 +365,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.wheatyhopsjuice", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Wheat, 1L))
@@ -373,7 +373,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.wheatyhopsjuice", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
@@ -382,7 +382,7 @@ public class BreweryRecipes implements Runnable {
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
.hidden()
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
@@ -390,7 +390,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.cafeaulait", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
@@ -399,7 +399,7 @@ public class BreweryRecipes implements Runnable {
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
.hidden()
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
@@ -407,7 +407,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.lemonade", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
@@ -416,7 +416,7 @@ public class BreweryRecipes implements Runnable {
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
.hidden()
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
@@ -424,7 +424,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.chocolatemilk", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Ice, 1L))
@@ -432,7 +432,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.icetea", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Gunpowder, 1L))
@@ -441,7 +441,7 @@ public class BreweryRecipes implements Runnable {
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
.hidden()
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(GT_OreDictUnificator.get(OrePrefixes.dust, Materials.Sugar, 1L))
@@ -450,7 +450,7 @@ public class BreweryRecipes implements Runnable {
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
.hidden()
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.fermented_spider_eye, 1, 0))
@@ -458,7 +458,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.weakness", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(new ItemStack(Items.fermented_spider_eye, 1, 0))
@@ -466,7 +466,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion.weakness", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
}
// biomass recipes
@@ -477,7 +477,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("biomass", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(getModItem(Forestry.ID, "mulch", 16L, 0))
@@ -485,7 +485,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("biomass", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
GT_Values.RA.stdBuilder()
.itemInputs(getModItem(Forestry.ID, "mulch", 8L, 0))
@@ -493,7 +493,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("biomass", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
}
// ic2 biomass recipes
@@ -504,7 +504,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("ic2biomass", 1000))
.duration(8 * SECONDS + 10 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
// Would add 2 different amount of water input if IC2 isn't loaded
if (IndustrialCraft2.isModLoaded()) {
@@ -514,7 +514,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("ic2biomass", 1000))
.duration(10 * TICKS)
.eut((int) TierEU.RECIPE_LV)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
}
}
@@ -540,7 +540,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion." + aName, 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
// strong
if (aName.equals("regen") || aName.equals("speed")
@@ -553,7 +553,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion." + aName + ".strong", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
}
// long
@@ -564,7 +564,7 @@ public class BreweryRecipes implements Runnable {
.fluidOutputs(getFluidStack("potion." + aName + ".long", 750))
.duration(6 * SECONDS + 8 * TICKS)
.eut(4)
- .addTo(sBrewingRecipes);
+ .addTo(brewingRecipes);
}
MixerRecipes.addMixerPotionRecipes(aName);