aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/recipe
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-07-15 16:52:47 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-07-15 16:52:47 +1000
commitf30e7e12e68d6c54fda520b785529fd8f3bd5d46 (patch)
tree00543747a56d1c11792f61e93b441ffd09e0396a /src/Java/miscutil/core/recipe
parent598838f4091a45c2b8c8686c602a97383f0f3b2b (diff)
downloadGT5-Unofficial-f30e7e12e68d6c54fda520b785529fd8f3bd5d46.tar.gz
GT5-Unofficial-f30e7e12e68d6c54fda520b785529fd8f3bd5d46.tar.bz2
GT5-Unofficial-f30e7e12e68d6c54fda520b785529fd8f3bd5d46.zip
% 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.
Diffstat (limited to 'src/Java/miscutil/core/recipe')
-rw-r--r--src/Java/miscutil/core/recipe/RECIPES_GREGTECH.java4
1 files changed, 1 insertions, 3 deletions
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(<liquid:helium> * 1, <gregtech:gt.integrated_circuit:4> * 0, <liquid:air> * 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);
}