diff options
author | Alkalus <draknyte1@hotmail.com> | 2017-09-09 16:36:36 +1000 |
---|---|---|
committer | Alkalus <draknyte1@hotmail.com> | 2017-09-09 16:36:36 +1000 |
commit | 075706790f74323a3a532321c3e39e49ed6e31d2 (patch) | |
tree | 7e0d0ea3492b640c5be34a6170b424043113bb32 /src/Java/gtPlusPlus/core/util/item | |
parent | c4ccc73b6e8259df2a569644d9bdfb78c641e4b6 (diff) | |
download | GT5-Unofficial-075706790f74323a3a532321c3e39e49ed6e31d2.tar.gz GT5-Unofficial-075706790f74323a3a532321c3e39e49ed6e31d2.tar.bz2 GT5-Unofficial-075706790f74323a3a532321c3e39e49ed6e31d2.zip |
$ Fixed Quantum not having a recipe.
- Removed a lot of logging during start-up.
Diffstat (limited to 'src/Java/gtPlusPlus/core/util/item')
-rw-r--r-- | src/Java/gtPlusPlus/core/util/item/ItemUtils.java | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/Java/gtPlusPlus/core/util/item/ItemUtils.java b/src/Java/gtPlusPlus/core/util/item/ItemUtils.java index 21d969066c..00068f1871 100644 --- a/src/Java/gtPlusPlus/core/util/item/ItemUtils.java +++ b/src/Java/gtPlusPlus/core/util/item/ItemUtils.java @@ -246,11 +246,11 @@ public class ItemUtils { public static ItemStack getItemStackOfAmountFromOreDictNoBroken(final String oredictName, final int amount){ if (CORE.DEBUG){ - Utils.LOG_INFO("Looking up: "+oredictName+" - from method: "+ReflectionUtils.getMethodName(1)); - Utils.LOG_INFO("Looking up: "+oredictName+" - from method: "+ReflectionUtils.getMethodName(2)); - Utils.LOG_INFO("Looking up: "+oredictName+" - from method: "+ReflectionUtils.getMethodName(3)); - Utils.LOG_INFO("Looking up: "+oredictName+" - from method: "+ReflectionUtils.getMethodName(4)); - Utils.LOG_INFO("Looking up: "+oredictName+" - from method: "+ReflectionUtils.getMethodName(5)); + Utils.LOG_WARNING("Looking up: "+oredictName+" - from method: "+ReflectionUtils.getMethodName(1)); + Utils.LOG_WARNING("Looking up: "+oredictName+" - from method: "+ReflectionUtils.getMethodName(2)); + Utils.LOG_WARNING("Looking up: "+oredictName+" - from method: "+ReflectionUtils.getMethodName(3)); + Utils.LOG_WARNING("Looking up: "+oredictName+" - from method: "+ReflectionUtils.getMethodName(4)); + Utils.LOG_WARNING("Looking up: "+oredictName+" - from method: "+ReflectionUtils.getMethodName(5)); } try{ @@ -273,7 +273,7 @@ public class ItemUtils { } } } - Utils.LOG_INFO(oredictName+" was not valid."); + Utils.LOG_WARNING(oredictName+" was not valid."); return null; } catch (Throwable t){ @@ -288,7 +288,7 @@ public class ItemUtils { return returnValue.copy(); } } - Utils.LOG_INFO(material+" was not valid."); + Utils.LOG_WARNING(material+" was not valid."); return null; } @@ -347,7 +347,7 @@ public class ItemUtils { } public static MultiPickaxeBase generateMultiPick(final boolean GT_Durability, final ToolMaterial customMaterial, final String name, final int durability, final short[] rgba, final Object enchantment){ - Utils.LOG_INFO("Generating a Multi-Pick out of "+name); + Utils.LOG_WARNING("Generating a Multi-Pick out of "+name); final short[] rgb = rgba; int dur = customMaterial.getMaxUses(); Utils.LOG_WARNING("Determined durability for "+name+" is "+dur); @@ -384,7 +384,7 @@ public class ItemUtils { if (MP_Redstone.isValid){ return MP_Redstone; } - Utils.LOG_INFO("Pickaxe was not valid."); + Utils.LOG_WARNING("Pickaxe was not valid."); return null; } |