From 9fc8b38599a4a58741e490ebf4fc1c802f7cac7e Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Mon, 28 Nov 2016 23:00:41 +1000 Subject: F Updated the version of Forge this is built against, now it's 1558. - Removed a bunch more annoying recipe logging during startup. --- src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java b/src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java index b9a8ac7a1e..cdec6d6c32 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java @@ -255,7 +255,7 @@ public class GregtechRecipeAdder implements IGregtech_RecipeAdder { @Override public boolean addBlastSmelterRecipe(ItemStack[] aInput, FluidStack aOutput, int aChance, int aDuration, int aEUt) { if ((aInput == null) || (aOutput == null)) { - Utils.LOG_INFO("Fail - Input or Output was null."); + Utils.LOG_WARNING("Fail - Input or Output was null."); return false; } @@ -267,13 +267,13 @@ public class GregtechRecipeAdder implements IGregtech_RecipeAdder { aOutput = Materials.PulsatingIron.getMolten(aOutput.amount); } if ((aDuration = GregTech_API.sRecipeFile.get("blastsmelter", aOutput.getFluid().getName(), aDuration)) <= 0) { - Utils.LOG_INFO("Recipe did not register."); + Utils.LOG_WARNING("Recipe did not register."); return false; } for (int das=0;das