aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/util
diff options
context:
space:
mode:
authorDraknyte1 <Draknyte1@hotmail.com>2017-01-14 13:53:30 +1000
committerDraknyte1 <Draknyte1@hotmail.com>2017-01-14 13:53:30 +1000
commitd83aa2f50568b001ca462d467fe9b5ad61a008dc (patch)
tree1864881661a709b3faa5943b85a2bf24cd592713 /src/Java/gtPlusPlus/core/util
parent9649317bee1a0621cd4a7ea0e9295571832d629d (diff)
downloadGT5-Unofficial-d83aa2f50568b001ca462d467fe9b5ad61a008dc.tar.gz
GT5-Unofficial-d83aa2f50568b001ca462d467fe9b5ad61a008dc.tar.bz2
GT5-Unofficial-d83aa2f50568b001ca462d467fe9b5ad61a008dc.zip
+ Added the basis for a config option, which enables GT textures (For all machine components, ingots/plates/rods/etc.).
- Removed recipe addition logging. % Tried again to boost multi-tool durabilities by 3x. % Added sapling plant code to the Tree Farmer, improved output bus storage of chopped logs.
Diffstat (limited to 'src/Java/gtPlusPlus/core/util')
-rw-r--r--src/Java/gtPlusPlus/core/util/item/ItemUtils.java2
-rw-r--r--src/Java/gtPlusPlus/core/util/recipe/RecipeUtils.java4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/Java/gtPlusPlus/core/util/item/ItemUtils.java b/src/Java/gtPlusPlus/core/util/item/ItemUtils.java
index 03d512d359..2ce6d5bb66 100644
--- a/src/Java/gtPlusPlus/core/util/item/ItemUtils.java
+++ b/src/Java/gtPlusPlus/core/util/item/ItemUtils.java
@@ -307,7 +307,7 @@ public class ItemUtils {
Utils.LOG_WARNING("Generating a Multi-Pick out of "+material.name());
short[] rgb;
rgb = material.getRGBA();
- int dur = customMaterial.getMaxUses();
+ int dur = customMaterial.getMaxUses()*3;
Utils.LOG_WARNING("Determined durability for "+material.name()+" is "+dur);
if (GT_Durability){
dur = material.mDurability*100;
diff --git a/src/Java/gtPlusPlus/core/util/recipe/RecipeUtils.java b/src/Java/gtPlusPlus/core/util/recipe/RecipeUtils.java
index 036e542a29..fe4399a579 100644
--- a/src/Java/gtPlusPlus/core/util/recipe/RecipeUtils.java
+++ b/src/Java/gtPlusPlus/core/util/recipe/RecipeUtils.java
@@ -36,7 +36,7 @@ public class RecipeUtils {
return false;
}
- Utils.LOG_INFO("Trying to add a recipe for "+resultItem.toString());
+ //Utils.LOG_INFO("Trying to add a recipe for "+resultItem.toString());
String a,b,c,d,e,f,g,h,i;
if (slot_1 == null){ a = " ";} else { a = "1";validSlots.add('1');validSlots.add(slot_1);}
Utils.LOG_WARNING(a);
@@ -110,7 +110,7 @@ public class RecipeUtils {
try {
GameRegistry.addRecipe(new ShapedOreRecipe(resultItem.copy(), (Object[]) validSlots.toArray()));
- Utils.LOG_INFO("Success! Added a recipe for "+resultItem.getDisplayName());
+ //Utils.LOG_INFO("Success! Added a recipe for "+resultItem.getDisplayName());
if (!COMPAT_HANDLER.areInitItemsLoaded){
RegistrationHandler.recipesSuccess++;
}