From f30e7e12e68d6c54fda520b785529fd8f3bd5d46 Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Fri, 15 Jul 2016 16:52:47 +1000 Subject: % Changed Internal handling of air -> helium recipe. + Attempted to add sounds to the Maceration stack. $ Fixed the Industrial Centrifuge inheriting it's name from the Industrial Electrolyzer. --- src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/Java/miscutil/core/recipe') diff --git a/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java b/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java index d6bcb71d2e..a15e82be04 100644 --- a/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java +++ b/src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java @@ -90,9 +90,7 @@ public class RECIPES_GREGTECH { private static void distilleryRecipes(){ Utils.LOG_INFO("Registering Distillery Recipes."); //Distillery - //OutputFluid, InputCircuit, InputFluid, Time in Ticks, EnergyUsage, isHidden - //mods.gregtech.Distillery.addRecipe( * 1, * 0, * 20000, 400, 30, false); - GT_Values.RA.addDistilleryRecipe(ItemList.Circuit_Integrated.getWithDamage(0L, 4L, new Object[0]), Materials.Air.getFluid(20000L), Materials.Helium.getFluid(10L), 400, 30, false); + GT_Values.RA.addDistilleryRecipe(ItemList.Circuit_Integrated.getWithDamage(0L, 4L, new Object[0]), FluidUtils.getFluidStack("air", 20000), FluidUtils.getFluidStack("helium", 1), 400, 30, false); } -- cgit