From 43f3190bd5204a0025c75ee7cabfd0871061211f Mon Sep 17 00:00:00 2001 From: Alkalus Date: Mon, 10 Jul 2017 13:04:13 +1000 Subject: + Added Coal gas. + Added GT++ Coal Coke. + Added a new handler for burnable items. % Changed up the 4 Coke Oven Recipes. - Removed lots of spam log messages during material creation. --- src/Java/gtPlusPlus/core/material/Material.java | 64 ++++++++++++------------- 1 file changed, 32 insertions(+), 32 deletions(-) (limited to 'src/Java/gtPlusPlus/core/material') diff --git a/src/Java/gtPlusPlus/core/material/Material.java b/src/Java/gtPlusPlus/core/material/Material.java index 5f83d1a732..5a38e5cf08 100644 --- a/src/Java/gtPlusPlus/core/material/Material.java +++ b/src/Java/gtPlusPlus/core/material/Material.java @@ -227,11 +227,11 @@ public class Material { this.vChemicalFormula = this.getToolTip(chemicalSymbol, OrePrefixes.dust.mMaterialAmount / M, true); } else if (!this.vChemicalSymbol.equals("")){ - Utils.LOG_WARNING("materialInput is null, using a valid chemical symbol."); + Utils.LOG_MACHINE_INFO("materialInput is null, using a valid chemical symbol."); this.vChemicalFormula = this.vChemicalSymbol; } else{ - Utils.LOG_WARNING("MaterialInput == null && chemicalSymbol probably equals nothing"); + Utils.LOG_MACHINE_INFO("MaterialInput == null && chemicalSymbol probably equals nothing"); this.vChemicalFormula = "??"; } @@ -267,13 +267,13 @@ public class Material { } } - Utils.LOG_INFO("Creating a Material instance for "+materialName); - Utils.LOG_INFO("Formula: "+this.vChemicalFormula + " Smallest Stack: "+this.smallestStackSizeWhenProcessing+" Smallest Ratio:"+ratio); - Utils.LOG_INFO("Protons: "+this.vProtons); - Utils.LOG_INFO("Neutrons: "+this.vNeutrons); - Utils.LOG_INFO("Mass: "+this.vMass+"/units"); - Utils.LOG_INFO("Melting Point: "+this.meltingPointC+"C."); - Utils.LOG_INFO("Boiling Point: "+this.boilingPointC+"C."); + Utils.LOG_MACHINE_INFO("Creating a Material instance for "+materialName); + Utils.LOG_MACHINE_INFO("Formula: "+this.vChemicalFormula + " Smallest Stack: "+this.smallestStackSizeWhenProcessing+" Smallest Ratio:"+ratio); + Utils.LOG_MACHINE_INFO("Protons: "+this.vProtons); + Utils.LOG_MACHINE_INFO("Neutrons: "+this.vNeutrons); + Utils.LOG_MACHINE_INFO("Mass: "+this.vMass+"/units"); + Utils.LOG_MACHINE_INFO("Melting Point: "+this.meltingPointC+"C."); + Utils.LOG_MACHINE_INFO("Boiling Point: "+this.boilingPointC+"C."); } public final String getLocalizedName(){ @@ -427,21 +427,21 @@ public class Material { if (!this.vMaterialInput.isEmpty()){ final ItemStack[] temp = new ItemStack[this.vMaterialInput.size()]; for (int i=0;i tempInput){ if (tempInput != null){ if (!tempInput.isEmpty()){ - Utils.LOG_WARNING("length: "+tempInput.size()); - Utils.LOG_WARNING("(inputs != null): "+(tempInput != null)); - //Utils.LOG_WARNING("length: "+inputs.length); + Utils.LOG_MACHINE_INFO("length: "+tempInput.size()); + Utils.LOG_MACHINE_INFO("(inputs != null): "+(tempInput != null)); + //Utils.LOG_MACHINE_INFO("length: "+inputs.length); final long[] tempRatio = new long[tempInput.size()]; for (int x=0;x0 ? this.vMaterialInput.size() : 1); - Utils.LOG_INFO("Dividing "+meltingPoint+" / "+divisor+" to get average melting point."); + Utils.LOG_MACHINE_INFO("Dividing "+meltingPoint+" / "+divisor+" to get average melting point."); meltingPoint = (meltingPoint/divisor); return meltingPoint; } -- cgit