aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/xmod/gregtech
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2016-11-28 23:00:41 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2016-11-28 23:00:41 +1000
commit9fc8b38599a4a58741e490ebf4fc1c802f7cac7e (patch)
tree55da0da1ba8e02b87167629a41394998871324ff /src/Java/gtPlusPlus/xmod/gregtech
parent3bd97f4a800897cd4ea6e5337335da58dda73429 (diff)
downloadGT5-Unofficial-9fc8b38599a4a58741e490ebf4fc1c802f7cac7e.tar.gz
GT5-Unofficial-9fc8b38599a4a58741e490ebf4fc1c802f7cac7e.tar.bz2
GT5-Unofficial-9fc8b38599a4a58741e490ebf4fc1c802f7cac7e.zip
F Updated the version of Forge this is built against, now it's 1558.
- Removed a bunch more annoying recipe logging during startup.
Diffstat (limited to 'src/Java/gtPlusPlus/xmod/gregtech')
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/recipes/GregtechRecipeAdder.java6
1 files changed, 3 insertions, 3 deletions
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<aInput.length;das++){
if (aInput[das] != null)
- Utils.LOG_INFO("tMaterial["+das+"]: "+aInput[das].getDisplayName()+", Amount: "+aInput[das].stackSize);
+ Utils.LOG_WARNING("tMaterial["+das+"]: "+aInput[das].getDisplayName()+", Amount: "+aInput[das].stackSize);
}
Recipe_GT.Gregtech_Recipe_Map.sAlloyBlastSmelterRecipes.addRecipe(true, aInput, new ItemStack[]{null}, null, new int[]{aChance}, null, new FluidStack[]{aOutput}, aDuration, aEUt, 0);