aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/Java/gtPlusPlus/core/item/ModItems.java1
-rw-r--r--src/Java/gtPlusPlus/core/material/ALLOY.java61
-rw-r--r--src/Java/gtPlusPlus/core/material/Material.java84
-rw-r--r--src/Java/gtPlusPlus/core/util/materials/MaterialUtils.java2
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelter.java65
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java32
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Extruder.java22
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java22
-rw-r--r--src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_ShapedCrafting.java42
9 files changed, 186 insertions, 145 deletions
diff --git a/src/Java/gtPlusPlus/core/item/ModItems.java b/src/Java/gtPlusPlus/core/item/ModItems.java
index 1d1b38bcfc..05e5661c69 100644
--- a/src/Java/gtPlusPlus/core/item/ModItems.java
+++ b/src/Java/gtPlusPlus/core/item/ModItems.java
@@ -449,6 +449,7 @@ public final class ModItems {
GT_OreDictUnificator.registerOre("ingotRubber", ItemUtils.getItemStack(CORE.MODID+":itemStickyRubber", 1));
itemHeliumBlob = new CoreItem("itemHeliumBlob", tabMisc).setTextureName(CORE.MODID + ":itemHeliumBlob");
+ GT_OreDictUnificator.registerOre("dustHydrogen", new ItemStack(ModItems.itemHeliumBlob));
//GameRegistry.registerItem(itemHeliumBlob, "itemHeliumBlob");
itemPLACEHOLDER_Circuit = new Item().setUnlocalizedName("itemPLACEHOLDER_Circuit").setTextureName(CORE.MODID + ":itemPLACEHOLDER_Circuit");
diff --git a/src/Java/gtPlusPlus/core/material/ALLOY.java b/src/Java/gtPlusPlus/core/material/ALLOY.java
index ae1928a749..642e402917 100644
--- a/src/Java/gtPlusPlus/core/material/ALLOY.java
+++ b/src/Java/gtPlusPlus/core/material/ALLOY.java
@@ -65,8 +65,7 @@ public final class ALLOY {
true, //Uses Blast furnace?
//Material Stacks with Percentage of required elements.
new MaterialStack[]{
- new MaterialStack(ELEMENT.TUNGSTEN, 20),
- new MaterialStack(ELEMENT.TANTALUM, 60),
+ new MaterialStack(ALLOY.TANTALLOY_60, 2),
new MaterialStack(ELEMENT.TITANIUM, 12),
new MaterialStack(ELEMENT.YTTRIUM, 8)
});
@@ -212,10 +211,12 @@ public final class ALLOY {
true, //Uses Blast furnace?
//Material Stacks with Percentage of required elements.
new MaterialStack[]{
- new MaterialStack(ELEMENT.CHROMIUM, 25),
+ new MaterialStack(ELEMENT.CHROMIUM, 26),
new MaterialStack(ELEMENT.NICKEL, 6),
- new MaterialStack(ELEMENT.COBALT, 9),
- new MaterialStack(ALLOY.STEEL, 60)
+ new MaterialStack(ELEMENT.MOLYBDENUM, 4),
+ new MaterialStack(ELEMENT.COPPER, 20),
+ new MaterialStack(ELEMENT.TUNGSTEN, 4),
+ new MaterialStack(ALLOY.STEEL, 40)
});
public static final Material MARAGING250 = new Material(
@@ -228,10 +229,11 @@ public final class ALLOY {
true, //Uses Blast furnace?
//Material Stacks with Percentage of required elements.
new MaterialStack[]{
- new MaterialStack(ELEMENT.TITANIUM, 5),
- new MaterialStack(ELEMENT.NICKEL, 25),
- new MaterialStack(ELEMENT.COBALT, 10),
- new MaterialStack(ALLOY.STEEL, 60)
+ new MaterialStack(ALLOY.STEEL, 64),
+ new MaterialStack(ELEMENT.MOLYBDENUM, 4),
+ new MaterialStack(ELEMENT.TITANIUM, 4),
+ new MaterialStack(ELEMENT.NICKEL, 16),
+ new MaterialStack(ELEMENT.COBALT, 8),
});
public static final Material MARAGING300 = new Material(
@@ -244,10 +246,11 @@ public final class ALLOY {
true, //Uses Blast furnace?
//Material Stacks with Percentage of required elements.
new MaterialStack[]{
- new MaterialStack(ELEMENT.TITANIUM, 10),
- new MaterialStack(ELEMENT.NICKEL, 20),
- new MaterialStack(ELEMENT.COBALT, 15),
- new MaterialStack(ALLOY.STEEL, 55)
+ new MaterialStack(ALLOY.STEEL, 64),
+ new MaterialStack(ELEMENT.TITANIUM, 4),
+ new MaterialStack(ELEMENT.ALUMINIUM, 4),
+ new MaterialStack(ELEMENT.NICKEL, 16),
+ new MaterialStack(ELEMENT.COBALT, 8),
});
public static final Material MARAGING350 = new Material(
@@ -260,10 +263,11 @@ public final class ALLOY {
true, //Uses Blast furnace?
//Material Stacks with Percentage of required elements.
new MaterialStack[]{
- new MaterialStack(ELEMENT.TITANIUM, 15),
- new MaterialStack(ELEMENT.NICKEL, 20),
- new MaterialStack(ELEMENT.COBALT, 10),
- new MaterialStack(ALLOY.STEEL, 55)
+ new MaterialStack(ALLOY.STEEL, 64),
+ new MaterialStack(ELEMENT.ALUMINIUM, 4),
+ new MaterialStack(ELEMENT.MOLYBDENUM, 4),
+ new MaterialStack(ELEMENT.NICKEL, 16),
+ new MaterialStack(ELEMENT.COBALT, 8),
});
public static final Material STELLITE = new Material(
@@ -450,8 +454,9 @@ public final class ALLOY {
false, //Uses Blast furnace?
//Material Stacks with Percentage of required elements.
new MaterialStack[]{
+ new MaterialStack(ELEMENT.SILICON, 40),
new MaterialStack(ELEMENT.CARBON, 50),
- new MaterialStack(ELEMENT.SILICON, 50)
+ new MaterialStack(ELEMENT.OXYGEN, 10)
});
public static final Material TANTALUM_CARBIDE = new Material(
@@ -464,8 +469,9 @@ public final class ALLOY {
true, //Uses Blast furnace?
//Material Stacks with Percentage of required elements.
new MaterialStack[]{
+ new MaterialStack(ELEMENT.TANTALUM, 40),
new MaterialStack(ELEMENT.CARBON, 50),
- new MaterialStack(ELEMENT.TANTALUM, 50)
+ new MaterialStack(ELEMENT.OXYGEN, 10)
});
public static final Material ZIRCONIUM_CARBIDE = new Material(
@@ -478,8 +484,9 @@ public final class ALLOY {
true, //Uses Blast furnace?
//Material Stacks with Percentage of required elements.
new MaterialStack[]{
+ new MaterialStack(ELEMENT.ZIRCONIUM, 40),
new MaterialStack(ELEMENT.CARBON, 50),
- new MaterialStack(ELEMENT.ZIRCONIUM, 50)
+ new MaterialStack(ELEMENT.OXYGEN, 10)
});
public static final Material NIOBIUM_CARBIDE = new Material(
@@ -492,8 +499,9 @@ public final class ALLOY {
true, //Uses Blast furnace?
//Material Stacks with Percentage of required elements.
new MaterialStack[]{
+ new MaterialStack(ELEMENT.NIOBIUM, 40),
new MaterialStack(ELEMENT.CARBON, 50),
- new MaterialStack(ELEMENT.NIOBIUM, 50)
+ new MaterialStack(ELEMENT.OXYGEN, 10)
});
@@ -506,11 +514,12 @@ public final class ALLOY {
128, //Neutrons
true, //Uses Blast furnace?
new MaterialStack[]{
- new MaterialStack(ELEMENT.NICKEL, 30),
- new MaterialStack(ELEMENT.CHROMIUM, 10),
- new MaterialStack(ELEMENT.ZIRCONIUM, 20),
- new MaterialStack(ELEMENT.IRON, 30),
- new MaterialStack(ELEMENT.TUNGSTEN, 10)
+ new MaterialStack(ELEMENT.TITANIUM, 18),
+ new MaterialStack(ELEMENT.CARBON, 18),
+ new MaterialStack(ELEMENT.POTASSIUM, 18),
+ new MaterialStack(ELEMENT.LITHIUM, 18),
+ new MaterialStack(ELEMENT.SULFUR, 18),
+ new MaterialStack(ELEMENT.HYDROGEN, 10)
}); //Material Stacks with Percentage of required elements.
diff --git a/src/Java/gtPlusPlus/core/material/Material.java b/src/Java/gtPlusPlus/core/material/Material.java
index c79fc04636..104414ee4c 100644
--- a/src/Java/gtPlusPlus/core/material/Material.java
+++ b/src/Java/gtPlusPlus/core/material/Material.java
@@ -167,14 +167,25 @@ public class Material {
Utils.LOG_WARNING("MaterialInput == null && chemicalSymbol probably equals nothing");
this.vChemicalFormula = "??";
}
-
+
this.vMoltenFluid = generateFluid();
dataVar = MathUtils.generateSingularRandomHexValue();
+ String ratio = "";
+ if (vSmallestRatio != null)
+ for (int hu=0;hu<vSmallestRatio.length;hu++){
+ if (ratio.equals("")){
+ ratio = String.valueOf(vSmallestRatio[hu]);
+ }
+ else {
+ ratio = ratio + ":" +vSmallestRatio[hu];
+ }
+ }
+
Utils.LOG_INFO("Creating a Material instance for "+materialName);
- Utils.LOG_INFO("Formula: "+vChemicalFormula + " Smallest Stack: "+smallestStackSizeWhenProcessing+" Smallest Ratio:"+vSmallestRatio);
+ Utils.LOG_INFO("Formula: "+vChemicalFormula + " Smallest Stack: "+smallestStackSizeWhenProcessing+" Smallest Ratio:"+ratio);
Utils.LOG_INFO("Protons: "+vProtons);
Utils.LOG_INFO("Neutrons: "+vNeutrons);
Utils.LOG_INFO("Mass: "+vMass+"/units");
@@ -296,11 +307,11 @@ public class Material {
}
public ItemStack[] getMaterialComposites(){
- //Utils.LOG_INFO("Something requested the materials needed for "+localizedName);
+ //Utils.LOG_WARNING("Something requested the materials needed for "+localizedName);
if (vMaterialInput != null && vMaterialInput.length >= 1){
ItemStack[] temp = new ItemStack[vMaterialInput.length];
for (int i=0;i<vMaterialInput.length;i++){
- //Utils.LOG_INFO("i:"+i);
+ //Utils.LOG_WARNING("i:"+i);
ItemStack testNull = null;
try {
testNull = vMaterialInput[i].getDustStack();
@@ -310,7 +321,7 @@ public class Material {
}
try {
if (testNull != null){
- //Utils.LOG_INFO("not null");
+ //Utils.LOG_WARNING("not null");
temp[i] = vMaterialInput[i].getDustStack();
}
} catch (Throwable r){
@@ -395,7 +406,7 @@ public class Material {
if (inputs.length > 0){
Utils.LOG_WARNING("length: "+inputs.length);
Utils.LOG_WARNING("(inputs != null): "+(inputs != null));
- //Utils.LOG_INFO("length: "+inputs.length);
+ //Utils.LOG_WARNING("length: "+inputs.length);
double tempPercentage=0;
long[] tempRatio = new long[inputs.length];
for (int x=0;x<inputs.length;x++){
@@ -407,7 +418,7 @@ public class Material {
}
//Check if % of added materials equals roughly 100%
/*if (tempPercentage <= 95 || tempPercentage >= 101){
- Utils.LOG_INFO("The compound for "+localizedName+" doesn't equal 98-100%, this isn't good.");
+ Utils.LOG_WARNING("The compound for "+localizedName+" doesn't equal 98-100%, this isn't good.");
}*/
long[] smallestRatio = MathUtils.simplifyNumbersToSmallestForm(tempRatio);
@@ -465,19 +476,34 @@ public class Material {
if (dummyFormulaArray.length >= 1){
for (int e=0;e<tempInput.length;e++){
if (tempInput[e] != null){
- if (!tempInput[e].stackMaterial.vChemicalSymbol.equals("??")){
- if (dummyFormulaArray[e] > 1){
- dummyFormula = dummyFormula + tempInput[e].stackMaterial.vChemicalSymbol + dummyFormulaArray[e];
- }
- else if (dummyFormulaArray[e] == 1){
- dummyFormula = dummyFormula + tempInput[e].stackMaterial.vChemicalSymbol;
- }
- else if (dummyFormulaArray[e] <= 0){
- dummyFormula = dummyFormula+"";
+ if (tempInput[e].stackMaterial != null){
+ if (!tempInput[e].stackMaterial.vChemicalSymbol.equals("??")){
+ if (dummyFormulaArray[e] > 1){
+
+ if (tempInput[e].stackMaterial.vChemicalFormula.length() > 3){
+ dummyFormula = dummyFormula + "(" + tempInput[e].stackMaterial.vChemicalFormula + ")" + dummyFormulaArray[e];
+ }
+ else {
+ dummyFormula = dummyFormula + tempInput[e].stackMaterial.vChemicalFormula + dummyFormulaArray[e];
+ }
+ }
+ else if (dummyFormulaArray[e] == 1){
+ if (tempInput[e].stackMaterial.vChemicalFormula.length() > 3){
+ dummyFormula = dummyFormula + "(" +tempInput[e].stackMaterial.vChemicalFormula + ")";
+ }
+ else {
+ dummyFormula = dummyFormula + "" +tempInput[e].stackMaterial.vChemicalFormula + "";
+ }
+ }
+ else if (dummyFormulaArray[e] <= 0){
+ dummyFormula = dummyFormula+"";
+ }
}
-
- }else
- dummyFormula = dummyFormula + "??";
+ else
+ dummyFormula = dummyFormula + "??";
+ }
+ else
+ dummyFormula = dummyFormula + "▓▓";
}
else {
dummyFormula = dummyFormula+"";
@@ -496,11 +522,11 @@ public class Material {
return "??";
}
-
+
Fluid generateFluid(){
if (Materials.get(localizedName).mFluid == null){
- Utils.LOG_INFO("Generating our own fluid.");
-
+ Utils.LOG_WARNING("Generating our own fluid.");
+
//Generate a Cell if we need to
if (ItemUtils.getItemStackOfAmountFromOreDictNoBroken("cell"+getUnlocalizedName(), 1) == null){
Item temp = new BaseItemCell(this);
@@ -515,21 +541,21 @@ public class Material {
ItemList.Cell_Empty.get(1L, new Object[0]),
1000);
}
- Utils.LOG_INFO("Getting the fluid from a GT material instead.");
+ Utils.LOG_WARNING("Getting the fluid from a GT material instead.");
return Materials.get(localizedName).mFluid;
}
public FluidStack getFluid(int fluidAmount) {
- Utils.LOG_INFO("Attempting to get "+fluidAmount+"L of "+this.vMoltenFluid.getName());
+ Utils.LOG_WARNING("Attempting to get "+fluidAmount+"L of "+this.vMoltenFluid.getName());
FluidStack moltenFluid = new FluidStack(this.vMoltenFluid, fluidAmount);
-
- Utils.LOG_INFO("Info: "+moltenFluid.getFluid().getName()+" Info: "+moltenFluid.amount+" Info: "+moltenFluid.getFluidID());
-
+
+ Utils.LOG_WARNING("Info: "+moltenFluid.getFluid().getName()+" Info: "+moltenFluid.amount+" Info: "+moltenFluid.getFluidID());
+
//FluidStack moltenFluid = FluidUtils.getFluidStack(this.vMoltenFluid.getName(), fluidAmount);
/*boolean isNull = (moltenFluid == null);
- if (isNull) Utils.LOG_INFO("Did not obtain fluid.");
- else Utils.LOG_INFO("Found fluid.");
+ if (isNull) Utils.LOG_WARNING("Did not obtain fluid.");
+ else Utils.LOG_WARNING("Found fluid.");
if (isNull){
return null;
}*/
diff --git a/src/Java/gtPlusPlus/core/util/materials/MaterialUtils.java b/src/Java/gtPlusPlus/core/util/materials/MaterialUtils.java
index 52e925df0e..35605169c5 100644
--- a/src/Java/gtPlusPlus/core/util/materials/MaterialUtils.java
+++ b/src/Java/gtPlusPlus/core/util/materials/MaterialUtils.java
@@ -59,7 +59,7 @@ public class MaterialUtils {
if (material.isRadioactive()){
radioactivity = 1;
}
- if (hasValidRGBA(rgba)){
+ if (hasValidRGBA(rgba) || element == Element.H){
//ModItems.itemBaseDecidust = UtilsItems.generateDecidust(material);
//ModItems.itemBaseCentidust = UtilsItems.generateCentidust(material);
return new Material(name, rgba, melting, boiling, protons, neutrons, blastFurnace, null, chemicalFormula, radioactivity);
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelter.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelter.java
index 1e69288e8e..fec8abce49 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelter.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_BlastSmelter.java
@@ -55,11 +55,11 @@ public class RecipeGen_BlastSmelter {
ItemStack[] tItemStackTest = new ItemStack[]{circuitGT, ItemUtils.getItemStackOfAmountFromOreDictNoBroken("dust"+M, 1)};
inputStackCount = 1;
fluidAmount = 144*inputStackCount;
- Utils.LOG_INFO("Adding an Alloy Blast Smelter Recipe for "+M+". Gives "+fluidAmount+"L of molten metal.");
- Utils.LOG_INFO("tMaterial.length: "+tMaterial.length+".");
+ Utils.LOG_WARNING("Adding an Alloy Blast Smelter Recipe for "+M+". Gives "+fluidAmount+"L of molten metal.");
+ Utils.LOG_WARNING("tMaterial.length: "+tMaterial.length+".");
for (int das=0;das<tItemStackTest.length;das++){
if (tItemStackTest[das] != null)
- Utils.LOG_INFO("tMaterial["+das+"]: "+tItemStackTest[das].getDisplayName()+" Meta: "+tItemStackTest[das].getItemDamage()+", Amount: "+tItemStackTest[das].stackSize);
+ Utils.LOG_WARNING("tMaterial["+das+"]: "+tItemStackTest[das].getDisplayName()+" Meta: "+tItemStackTest[das].getItemDamage()+", Amount: "+tItemStackTest[das].stackSize);
}
//Generate Recipes for all singular materials that can be made molten.
@@ -80,7 +80,7 @@ public class RecipeGen_BlastSmelter {
for (MaterialStack ternkfsdf:M.mMaterialList){
mMaterialListSize++;
}
- Utils.LOG_INFO("Size: "+mMaterialListSize);
+ Utils.LOG_WARNING("Size: "+mMaterialListSize);
//If this Material has some kind of compound list, proceed
if (mMaterialListSize > 1){
MaterialStack[] tempStack = new MaterialStack[mMaterialListSize];
@@ -91,8 +91,8 @@ public class RecipeGen_BlastSmelter {
//Builds me a MaterialStack[] from the MaterialList of M.
int ooo=0;
for (MaterialStack xMaterial : M.mMaterialList){
- Utils.LOG_INFO("FOUND: "+xMaterial.mMaterial);
- Utils.LOG_INFO("ADDING: "+xMaterial.mMaterial);
+ Utils.LOG_WARNING("FOUND: "+xMaterial.mMaterial);
+ Utils.LOG_WARNING("ADDING: "+xMaterial.mMaterial);
tempStack[ooo] = M.mMaterialList.get(ooo);
ooo++;
}
@@ -101,10 +101,10 @@ public class RecipeGen_BlastSmelter {
components = new ItemStack[tempStack.length];
for (MaterialStack aOutputPart : tempStack){
if (aOutputPart != null){
- Utils.LOG_INFO("Finding dust: "+aOutputPart.mMaterial);
+ Utils.LOG_WARNING("Finding dust: "+aOutputPart.mMaterial);
ItemStack rStack = ItemUtils.getItemStackOfAmountFromOreDictNoBroken("dust"+aOutputPart.mMaterial, (int) aOutputPart.mAmount);
if (rStack != null){
- Utils.LOG_INFO("Found dust: "+aOutputPart.mMaterial);
+ Utils.LOG_WARNING("Found dust: "+aOutputPart.mMaterial);
components[counter] = rStack;
inputStackCount = inputStackCount+rStack.stackSize;
}
@@ -138,11 +138,11 @@ public class RecipeGen_BlastSmelter {
fluidAmount = 144*inputStackCount;
- Utils.LOG_INFO("Adding an Alloy Blast Smelter Recipe for "+M+" using it's compound dusts. This material has "+ inputStackCount+" parts. Gives "+fluidAmount+"L of molten metal.");
- Utils.LOG_INFO("tMaterial.length: "+components.length+".");
+ Utils.LOG_WARNING("Adding an Alloy Blast Smelter Recipe for "+M+" using it's compound dusts. This material has "+ inputStackCount+" parts. Gives "+fluidAmount+"L of molten metal.");
+ Utils.LOG_WARNING("tMaterial.length: "+components.length+".");
for (int das=0;das<components.length;das++){
if (components[das] != null)
- Utils.LOG_INFO("tMaterial["+das+"]: "+components[das].getDisplayName()+" Meta: "+components[das].getItemDamage()+", Amount: "+components[das].stackSize);
+ Utils.LOG_WARNING("tMaterial["+das+"]: "+components[das].getDisplayName()+" Meta: "+components[das].getItemDamage()+", Amount: "+components[das].stackSize);
}
if (M.mBlastFurnaceRequired) {
//CORE.RA.addBlastSmelterRecipe(components, M.getMolten(fluidAmount), 100, duration, 500);
@@ -193,36 +193,36 @@ public class RecipeGen_BlastSmelter {
ItemStack[] tItemStackTest = new ItemStack[]{/*circuitGT,*/ tStack};
inputStackCount = 1;
fluidAmount = 144*inputStackCount;
- Utils.LOG_INFO("Adding an Alloy Blast Smelter Recipe for "+M.getLocalizedName()+". Gives "+fluidAmount+"L of molten metal.");
+ Utils.LOG_WARNING("Adding an Alloy Blast Smelter Recipe for "+M.getLocalizedName()+". Gives "+fluidAmount+"L of molten metal.");
for (int das=0;das<tItemStackTest.length;das++){
if (tItemStackTest[das] != null)
- Utils.LOG_INFO("tMaterial["+das+"]: "+tItemStackTest[das].getDisplayName()+" Meta: "+tItemStackTest[das].getItemDamage()+", Amount: "+tItemStackTest[das].stackSize);
+ Utils.LOG_WARNING("tMaterial["+das+"]: "+tItemStackTest[das].getDisplayName()+" Meta: "+tItemStackTest[das].getItemDamage()+", Amount: "+tItemStackTest[das].stackSize);
}
//Generate Recipes for all singular materials that can be made molten.
if (M.requiresBlastFurnace()) {
if (M.getFluid(10) == null){
- Utils.LOG_INFO("Material Fluid was Null. Why you lie gaem.");
+ Utils.LOG_WARNING("Material Fluid was Null. Why you lie gaem.");
}
else {
- Utils.LOG_INFO("Material Fluid: "+M.getFluid(10).getFluid().getName());
+ Utils.LOG_WARNING("Material Fluid: "+M.getFluid(10).getFluid().getName());
}
if (CORE.RA.addBlastSmelterRecipe(tItemStackTest, M.getFluid(fluidAmount), 100, duration, 240)){
- Utils.LOG_INFO("Success.");
+ Utils.LOG_WARNING("Success.");
}
else {
- Utils.LOG_INFO("Failed.");
+ Utils.LOG_WARNING("Failed.");
}
}
else {
if (CORE.RA.addBlastSmelterRecipe(tItemStackTest, M.getFluid(fluidAmount), 100, duration/2, 120)){
- Utils.LOG_INFO("Success.");
+ Utils.LOG_WARNING("Success.");
}
else {
- Utils.LOG_INFO("Failed.");
+ Utils.LOG_WARNING("Failed.");
}
}
@@ -236,7 +236,7 @@ public class RecipeGen_BlastSmelter {
for (gtPlusPlus.core.material.MaterialStack ternkfsdf:M.getComposites()){
mMaterialListSize++;
}
- Utils.LOG_INFO("Size: "+mMaterialListSize);
+ Utils.LOG_WARNING("Size: "+mMaterialListSize);
//If this Material has some kind of compound list, proceed
if (mMaterialListSize > 1){
gtPlusPlus.core.material.MaterialStack[] tempStack = new gtPlusPlus.core.material.MaterialStack[mMaterialListSize];
@@ -248,9 +248,14 @@ public class RecipeGen_BlastSmelter {
int ooo=0;
for (gtPlusPlus.core.material.MaterialStack xMaterial : M.getComposites()){
if (xMaterial != null){
- Utils.LOG_INFO("FOUND: "+xMaterial.getStackMaterial().getLocalizedName());
- Utils.LOG_INFO("ADDING: "+xMaterial.getStackMaterial().getLocalizedName());
+ if (xMaterial.getStackMaterial() != null){
+ Utils.LOG_WARNING("FOUND: "+xMaterial.getStackMaterial().getLocalizedName());
+ Utils.LOG_WARNING("ADDING: "+xMaterial.getStackMaterial().getLocalizedName());
+
+ }
+
tempStack[ooo] = xMaterial;
+
}
ooo++;
}
@@ -270,33 +275,33 @@ public class RecipeGen_BlastSmelter {
fluidAmount = 144*inputStackCount;
- Utils.LOG_INFO("Adding an Alloy Blast Smelter Recipe for "+M.getLocalizedName()+" using it's compound dusts. This material has "+ inputStackCount+" parts. Gives "+fluidAmount+"L of molten metal.");
- Utils.LOG_INFO("tMaterial.length: "+components.length+".");
+ Utils.LOG_WARNING("Adding an Alloy Blast Smelter Recipe for "+M.getLocalizedName()+" using it's compound dusts. This material has "+ inputStackCount+" parts. Gives "+fluidAmount+"L of molten metal.");
+ Utils.LOG_WARNING("tMaterial.length: "+components.length+".");
for (int das=0;das<components.length;das++){
if (components[das] != null)
- Utils.LOG_INFO("tMaterial["+das+"]: "+components[das].getDisplayName()+" Meta: "+components[das].getItemDamage()+", Amount: "+components[das].stackSize);
+ Utils.LOG_WARNING("tMaterial["+das+"]: "+components[das].getDisplayName()+" Meta: "+components[das].getItemDamage()+", Amount: "+components[das].stackSize);
}
if (M.requiresBlastFurnace()) {
if (CORE.RA.addBlastSmelterRecipe(components, M.getFluid(fluidAmount), 100, duration, 500)){
- Utils.LOG_INFO("Success.");
+ Utils.LOG_WARNING("Success.");
}
else {
- Utils.LOG_INFO("Failed.");
+ Utils.LOG_WARNING("Failed.");
}
}
else {
if (CORE.RA.addBlastSmelterRecipe(components, M.getFluid(fluidAmount), 100, duration, 240)){
- Utils.LOG_INFO("Success.");
+ Utils.LOG_WARNING("Success.");
}
else {
- Utils.LOG_INFO("Failed.");
+ Utils.LOG_WARNING("Failed.");
}
}
}
}
}
else {
- Utils.LOG_INFO("doTest: "+doTest+" | tMaterial != null: "+(tMaterial != null));
+ Utils.LOG_WARNING("doTest: "+doTest+" | tMaterial != null: "+(tMaterial != null));
}
}
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java
index 2d4038c74f..e27a9167ca 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_DustGeneration.java
@@ -12,7 +12,7 @@ public class RecipeGen_DustGeneration {
public static void generateRecipes(Material material){
int tVoltageMultiplier = material.getMeltingPoint_K() >= 2800 ? 64 : 16;
- Utils.LOG_INFO("Generating Shaped Crafting recipes for "+material.getLocalizedName()); //TODO
+ Utils.LOG_WARNING("Generating Shaped Crafting recipes for "+material.getLocalizedName()); //TODO
//Ring Recipe
if (RecipeUtils.addShapedGregtechRecipe(
@@ -20,10 +20,10 @@ public class RecipeGen_DustGeneration {
null, material.getRod(1), null,
null, null, null,
material.getRing(1))){
- Utils.LOG_INFO("Ring Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Ring Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Ring Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Ring Recipe: "+material.getLocalizedName()+" - Failed");
}
@@ -39,10 +39,10 @@ public class RecipeGen_DustGeneration {
tinyDust, tinyDust, tinyDust,
tinyDust, tinyDust, tinyDust,
normalDust)){
- Utils.LOG_INFO("9 Tiny dust to 1 Dust Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("9 Tiny dust to 1 Dust Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("9 Tiny dust to 1 Dust Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("9 Tiny dust to 1 Dust Recipe: "+material.getLocalizedName()+" - Failed");
}
if (RecipeUtils.recipeBuilder(
@@ -50,10 +50,10 @@ public class RecipeGen_DustGeneration {
null, null, null,
null, null, null,
material.getTinyDust(9))){
- Utils.LOG_INFO("9 Tiny dust from 1 Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("9 Tiny dust from 1 Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("9 Tiny dust from 1 Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("9 Tiny dust from 1 Recipe: "+material.getLocalizedName()+" - Failed");
}
@@ -62,10 +62,10 @@ public class RecipeGen_DustGeneration {
smallDust, smallDust, null,
null, null, null,
normalDust)){
- Utils.LOG_INFO("4 Small dust to 1 Dust Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("4 Small dust to 1 Dust Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("4 Small dust to 1 Dust Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("4 Small dust to 1 Dust Recipe: "+material.getLocalizedName()+" - Failed");
}
@@ -74,22 +74,22 @@ public class RecipeGen_DustGeneration {
null, null, null,
null, null, null,
material.getSmallDust(4))){
- Utils.LOG_INFO("4 Small dust from 1 Dust Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("4 Small dust from 1 Dust Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("4 Small dust from 1 Dust Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("4 Small dust from 1 Dust Recipe: "+material.getLocalizedName()+" - Failed");
}
- if (inputStacks.length > 0){
- Utils.LOG_INFO(ItemUtils.getArrayStackNames(inputStacks));
+ if (inputStacks.length > 0 && inputStacks.length <= 4){
+ Utils.LOG_WARNING(ItemUtils.getArrayStackNames(inputStacks));
long[] inputStackSize = material.vSmallestRatio;
if (inputStackSize != null){
for (short x=0;x<inputStacks.length;x++){
if (inputStacks[x] != null && inputStackSize[x] != 0)
inputStacks[x].stackSize = (int) inputStackSize[x];
}
- Utils.LOG_INFO(ItemUtils.getArrayStackNames(inputStacks));
+ Utils.LOG_WARNING(ItemUtils.getArrayStackNames(inputStacks));
if (GT_Values.RA.addMixerRecipe(
inputStacks[0], inputStacks[1],
inputStacks[2], inputStacks[3],
@@ -97,10 +97,10 @@ public class RecipeGen_DustGeneration {
outputStacks,
(int) Math.max(material.getMass() * 2L * 1, 1),
6 * material.vVoltageMultiplier)){
- Utils.LOG_INFO("Dust Mixer Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Dust Mixer Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Dust Mixer Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Dust Mixer Recipe: "+material.getLocalizedName()+" - Failed");
}
}
}
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Extruder.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Extruder.java
index cc7b413061..d6460dc56b 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Extruder.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Extruder.java
@@ -22,7 +22,7 @@ public class RecipeGen_Extruder {
ItemStack shape_Rod = ItemList.Shape_Extruder_Rod.get(0);
ItemStack shape_Bolt = ItemList.Shape_Extruder_Bolt.get(0);
- Utils.LOG_INFO("Generating Extruder recipes for "+material.getLocalizedName());
+ Utils.LOG_WARNING("Generating Extruder recipes for "+material.getLocalizedName());
//Plate Recipe
@@ -31,10 +31,10 @@ public class RecipeGen_Extruder {
shape_Plate,
plate_Single,
10, 4 * tVoltageMultiplier)){
- Utils.LOG_INFO("Extruder Plate Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Extruder Plate Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Extruder Plate Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Extruder Plate Recipe: "+material.getLocalizedName()+" - Failed");
}
//Ring Recipe
@@ -45,10 +45,10 @@ public class RecipeGen_Extruder {
material.getRing(4),
(int) Math.max(material.getMass() * 2L * 1, 1),
6 * material.vVoltageMultiplier)){
- Utils.LOG_INFO("Extruder Ring Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Extruder Ring Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Extruder Ring Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Extruder Ring Recipe: "+material.getLocalizedName()+" - Failed");
}
}
@@ -61,10 +61,10 @@ public class RecipeGen_Extruder {
itemGear,
(int) Math.max(material.getMass() * 5L, 1),
8 * material.vVoltageMultiplier)){
- Utils.LOG_INFO("Extruder Gear Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Extruder Gear Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Extruder Gear Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Extruder Gear Recipe: "+material.getLocalizedName()+" - Failed");
}
}
@@ -76,10 +76,10 @@ public class RecipeGen_Extruder {
material.getRod(2),
(int) Math.max(material.getMass() * 2L * 1, 1),
6 * material.vVoltageMultiplier)){
- Utils.LOG_INFO("Extruder Rod Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Extruder Rod Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Extruder Rod Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Extruder Rod Recipe: "+material.getLocalizedName()+" - Failed");
}
@@ -91,10 +91,10 @@ public class RecipeGen_Extruder {
material.getBolt(8),
(int) Math.max(material.getMass() * 2L * 1, 1),
6 * material.vVoltageMultiplier)){
- Utils.LOG_INFO("Extruder Bolt Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Extruder Bolt Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Extruder Bolt Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Extruder Bolt Recipe: "+material.getLocalizedName()+" - Failed");
}
}
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java
index b125122cb3..16e0c90d07 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_Plates.java
@@ -21,7 +21,7 @@ public class RecipeGen_Plates {
ItemStack plate_SingleTwo = material.getPlate(2);
ItemStack plate_Double = material.getPlateDouble(1);
- Utils.LOG_INFO("Generating Plate recipes for "+material.getLocalizedName());
+ Utils.LOG_WARNING("Generating Plate recipes for "+material.getLocalizedName());
//Forge Hammer
if (addForgeHammerRecipe(
@@ -29,10 +29,10 @@ public class RecipeGen_Plates {
plate_Single,
(int) Math.max(material.getMass(), 1L),
16)){
- Utils.LOG_INFO("Forge Hammer Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Forge Hammer Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Forge Hammer Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Forge Hammer Recipe: "+material.getLocalizedName()+" - Failed");
}
//Bender
if (addBenderRecipe(
@@ -40,10 +40,10 @@ public class RecipeGen_Plates {
plate_Single,
(int) Math.max(material.getMass() * 1L, 1L),
24)){
- Utils.LOG_INFO("Bender Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Bender Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Bender Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Bender Recipe: "+material.getLocalizedName()+" - Failed");
}
//Alloy Smelter
if (GT_Values.RA.addAlloySmelterRecipe(
@@ -52,10 +52,10 @@ public class RecipeGen_Plates {
plate_Single,
(int) Math.max(material.getMass() * 2L, 1L),
2 * tVoltageMultiplier)){
- Utils.LOG_INFO("Alloy Smelter Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Alloy Smelter Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Alloy Smelter Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Alloy Smelter Recipe: "+material.getLocalizedName()+" - Failed");
}
@@ -65,20 +65,20 @@ public class RecipeGen_Plates {
plate_Double,
(int) Math.max(material.getMass() * 2L, 1L),
96)){
- Utils.LOG_INFO("Bender Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Bender Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Bender Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Bender Recipe: "+material.getLocalizedName()+" - Failed");
}
if (addBenderRecipe(
plate_SingleTwo,
plate_Double,
(int) Math.max(material.getMass() * 2L, 1L),
96)){
- Utils.LOG_INFO("Bender Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Bender Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Bender Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Bender Recipe: "+material.getLocalizedName()+" - Failed");
}
}
diff --git a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_ShapedCrafting.java b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_ShapedCrafting.java
index a9ab14fdf6..0e8db188ae 100644
--- a/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_ShapedCrafting.java
+++ b/src/Java/gtPlusPlus/xmod/gregtech/loaders/RecipeGen_ShapedCrafting.java
@@ -9,7 +9,7 @@ import net.minecraft.item.ItemStack;
public class RecipeGen_ShapedCrafting {
public static void generateRecipes(Material material){
- Utils.LOG_INFO("Generating Shaped Crafting recipes for "+material.getLocalizedName()); //TODO
+ Utils.LOG_WARNING("Generating Shaped Crafting recipes for "+material.getLocalizedName()); //TODO
//Plates
@@ -52,10 +52,10 @@ public class RecipeGen_ShapedCrafting {
null, material.getRod(1), null,
null, null, null,
material.getRing(1))){
- Utils.LOG_INFO("Ring Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Ring Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Ring Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Ring Recipe: "+material.getLocalizedName()+" - Failed");
}
}
@@ -68,10 +68,10 @@ public class RecipeGen_ShapedCrafting {
stackStick, "craftingToolWrench", stackStick,
stackStick, stackStick, stackStick,
material.getFrameBox(2))){
- Utils.LOG_INFO("Framebox Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Framebox Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Framebox Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Framebox Recipe: "+material.getLocalizedName()+" - Failed");
}
}
@@ -81,22 +81,22 @@ public class RecipeGen_ShapedCrafting {
ItemStack outputStacks = material.getDust(material.smallestStackSizeWhenProcessing);
if (inputStacks.length > 0){
- Utils.LOG_INFO(ItemUtils.getArrayStackNames(inputStacks));
+ Utils.LOG_WARNING(ItemUtils.getArrayStackNames(inputStacks));
long[] inputStackSize = material.vSmallestRatio;
if (inputStackSize != null){
for (short x=0;x<inputStacks.length;x++){
if (inputStacks[x] != null && inputStackSize[x] != 0)
inputStacks[x].stackSize = (int) inputStackSize[x];
}
- Utils.LOG_INFO(ItemUtils.getArrayStackNames(inputStacks));
+ Utils.LOG_WARNING(ItemUtils.getArrayStackNames(inputStacks));
if (RecipeUtils.buildShapelessRecipe(
outputStacks,
inputStacks
)){
- Utils.LOG_INFO("Shapeless Crafting Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Shapeless Crafting Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Shapeless Crafting Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Shapeless Crafting Recipe: "+material.getLocalizedName()+" - Failed");
}
}
}*/
@@ -109,10 +109,10 @@ public class RecipeGen_ShapedCrafting {
null, material.getRod(1), null,
null, null, null,
material.getBolt(2))){
- Utils.LOG_INFO("Bolt Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Bolt Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Bolt Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Bolt Recipe: "+material.getLocalizedName()+" - Failed");
}
}
@@ -123,10 +123,10 @@ public class RecipeGen_ShapedCrafting {
null, material.getIngot(1), null,
null, null, null,
material.getRod(1))){
- Utils.LOG_INFO("Rod Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Rod Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Rod Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Rod Recipe: "+material.getLocalizedName()+" - Failed");
}
@@ -136,10 +136,10 @@ public class RecipeGen_ShapedCrafting {
material.getLongRod(1), null, null,
null, null, null,
material.getRod(2))){
- Utils.LOG_INFO("Rod Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Rod Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Rod Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Rod Recipe: "+material.getLocalizedName()+" - Failed");
}
//Two small to long rod
@@ -148,10 +148,10 @@ public class RecipeGen_ShapedCrafting {
null, null, null,
null, null, null,
material.getLongRod(1))){
- Utils.LOG_INFO("Long Rod Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Long Rod Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Long Rod Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Long Rod Recipe: "+material.getLocalizedName()+" - Failed");
}
//Rotor Recipe
@@ -161,10 +161,10 @@ public class RecipeGen_ShapedCrafting {
material.getScrew(1), material.getRing(1), "craftingToolFile",
material.getPlate(1), "craftingToolScrewdriver", material.getPlate(1),
material.getRotor(1))){
- Utils.LOG_INFO("Rotor Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Rotor Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Rotor Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Rotor Recipe: "+material.getLocalizedName()+" - Failed");
}
}
@@ -175,10 +175,10 @@ public class RecipeGen_ShapedCrafting {
material.getBolt(1), null, null,
null, null, null,
material.getScrew(1))){
- Utils.LOG_INFO("Screw Recipe: "+material.getLocalizedName()+" - Success");
+ Utils.LOG_WARNING("Screw Recipe: "+material.getLocalizedName()+" - Success");
}
else {
- Utils.LOG_INFO("Screw Recipe: "+material.getLocalizedName()+" - Failed");
+ Utils.LOG_WARNING("Screw Recipe: "+material.getLocalizedName()+" - Failed");
}
}
}