From c2f45087c471dc57ef08bf3b22e98c619960daad Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sat, 29 Apr 2017 22:55:45 +1000 Subject: + Added Eglin Steel. + Added Recipes for the Industrial Sieve & Casings. % Tweaked Blast Furnace EU cost for all materials. --- .../GregtechMetaTileEntity_IndustrialSifter.java | 34 +++++++++++----------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'src/Java/gtPlusPlus/xmod/gregtech/common/tileentities') diff --git a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialSifter.java b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialSifter.java index cd64f294f8..6f33188957 100644 --- a/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialSifter.java +++ b/src/Java/gtPlusPlus/xmod/gregtech/common/tileentities/machines/multi/GregtechMetaTileEntity_IndustrialSifter.java @@ -115,7 +115,7 @@ extends GregtechMeta_MultiBlockBase { @Override public boolean checkRecipe(final ItemStack aStack) { - Utils.LOG_INFO("1"); + Utils.LOG_WARNING("1"); //Get inputs. final ArrayList tInputList = this.getStoredInputs(); @@ -132,7 +132,7 @@ extends GregtechMeta_MultiBlockBase { } } - Utils.LOG_INFO("2"); + Utils.LOG_WARNING("2"); //Temp var final ItemStack[] tInputs = Arrays.copyOfRange(tInputList.toArray(new ItemStack[tInputList.size()]), 0, 2); @@ -143,7 +143,7 @@ extends GregtechMeta_MultiBlockBase { } - Utils.LOG_INFO("3"); + Utils.LOG_WARNING("3"); //Make a recipe instance for the rest of the method. final GT_Recipe tRecipe = GT_Recipe.GT_Recipe_Map.sSifterRecipes.findRecipe(this.getBaseMetaTileEntity(), false, 9223372036854775807L, null, tInputs); @@ -152,53 +152,53 @@ extends GregtechMeta_MultiBlockBase { if (cloneRecipe != tRecipe || cloneRecipe == null){ cloneRecipe = tRecipe.copy(); - Utils.LOG_INFO("Setting Recipe"); + Utils.LOG_WARNING("Setting Recipe"); } if (mInputStacks != tRecipe.mInputs || mInputStacks == null){ mInputStacks = tRecipe.mInputs; - Utils.LOG_INFO("Setting Recipe Inputs"); + Utils.LOG_WARNING("Setting Recipe Inputs"); } if (cloneChances != tRecipe.mChances || cloneChances == null){ cloneChances = tRecipe.mChances.clone(); - Utils.LOG_INFO("Setting Chances"); + Utils.LOG_WARNING("Setting Chances"); } for (int r=0;r 0) && (tValidOutputSlots >= 1)) { -- cgit