From d83aa2f50568b001ca462d467fe9b5ad61a008dc Mon Sep 17 00:00:00 2001 From: Draknyte1 Date: Sat, 14 Jan 2017 13:53:30 +1000 Subject: + 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. --- src/Java/gtPlusPlus/core/item/tool/staballoy/MultiPickaxeBase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Java/gtPlusPlus/core/item/tool') diff --git a/src/Java/gtPlusPlus/core/item/tool/staballoy/MultiPickaxeBase.java b/src/Java/gtPlusPlus/core/item/tool/staballoy/MultiPickaxeBase.java index dad3cf320b..6cdb426fa9 100644 --- a/src/Java/gtPlusPlus/core/item/tool/staballoy/MultiPickaxeBase.java +++ b/src/Java/gtPlusPlus/core/item/tool/staballoy/MultiPickaxeBase.java @@ -43,7 +43,7 @@ public class MultiPickaxeBase extends StaballoyPickaxe{ this.setTextureName(CORE.MODID + ":" + "itemPickaxe"); this.FACING_HORIZONTAL=true; this.setMaxStackSize(1); - this.setMaxDamage(materialDurability); + this.setMaxDamage(materialDurability*3); this.colour = colour; this.materialName = material.name(); this.setCreativeTab(AddToCreativeTab.tabTools); -- cgit