From 26d1edb9ada7a3b961ce06194230d172d38a536d Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Wed, 29 Jun 2016 22:28:02 +1000 Subject: +Added A FluidUtils Class $Fixed TF Recipes for GT Machines. --- .../core/intermod/thermalfoundation/recipe/TF_Gregtech_Recipes.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/Java/miscutil/core/intermod') diff --git a/src/Java/miscutil/core/intermod/thermalfoundation/recipe/TF_Gregtech_Recipes.java b/src/Java/miscutil/core/intermod/thermalfoundation/recipe/TF_Gregtech_Recipes.java index ff4ff29641..527c9e947d 100644 --- a/src/Java/miscutil/core/intermod/thermalfoundation/recipe/TF_Gregtech_Recipes.java +++ b/src/Java/miscutil/core/intermod/thermalfoundation/recipe/TF_Gregtech_Recipes.java @@ -38,6 +38,7 @@ public class TF_Gregtech_Recipes { //Blizz Rod Utils.LOG_INFO("Adding Recipes for Blizz Rod"); + GT_Values.RA.addVacuumFreezerRecipe(new ItemStack(Items.blaze_rod), rod_Blizz, (int) Math.max((Materials.Blaze.getMass()*4) * 3L, 1L)); GT_ModHandler.addPulverisationRecipe(rod_Blizz, dust_Blizz3, new ItemStack(Items.snowball, 1), 50, false); //Blazing Pyrotheum @@ -47,7 +48,7 @@ public class TF_Gregtech_Recipes { } private static FluidStack getFluidStack(String fluidName, int amount){ - Utils.LOG_INFO("Trying to get a fluid stack of "+fluidName); + Utils.LOG_WARNING("Trying to get a fluid stack of "+fluidName); try { return FluidRegistry.getFluidStack(fluidName, amount); } -- cgit