aboutsummaryrefslogtreecommitdiff
path: root/src/Java/miscutil/core/intermod
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-06-29 22:28:02 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-06-29 22:28:02 +1000
commit26d1edb9ada7a3b961ce06194230d172d38a536d (patch)
tree228f7c0e294473a47ce2c971e64d783e57b609ee /src/Java/miscutil/core/intermod
parentf0418333ed443ceddf78c7658737dac697462b59 (diff)
downloadGT5-Unofficial-26d1edb9ada7a3b961ce06194230d172d38a536d.tar.gz
GT5-Unofficial-26d1edb9ada7a3b961ce06194230d172d38a536d.tar.bz2
GT5-Unofficial-26d1edb9ada7a3b961ce06194230d172d38a536d.zip
+Added A FluidUtils Class
$Fixed TF Recipes for GT Machines.
Diffstat (limited to 'src/Java/miscutil/core/intermod')
-rw-r--r--src/Java/miscutil/core/intermod/thermalfoundation/recipe/TF_Gregtech_Recipes.java3
1 files changed, 2 insertions, 1 deletions
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);
}