aboutsummaryrefslogtreecommitdiff
path: root/src/Java/gtPlusPlus/core/block
diff options
context:
space:
mode:
authorAlkalus <3060479+draknyte1@users.noreply.github.com>2019-04-29 12:19:35 +1000
committerAlkalus <3060479+draknyte1@users.noreply.github.com>2019-04-29 12:19:35 +1000
commit47d2b68b66fb9958b57c3ff81f1e73e8f6afd91b (patch)
tree4b286fbf8780c16a1f30598614875c3afb26daa5 /src/Java/gtPlusPlus/core/block
parentf2f00bdaf83738740f004b46126ffe48e0b1cbc9 (diff)
downloadGT5-Unofficial-47d2b68b66fb9958b57c3ff81f1e73e8f6afd91b.tar.gz
GT5-Unofficial-47d2b68b66fb9958b57c3ff81f1e73e8f6afd91b.tar.bz2
GT5-Unofficial-47d2b68b66fb9958b57c3ff81f1e73e8f6afd91b.zip
$ Fixed bug when breaking blocks which drop their inventory contents.
$ Fixed Hardness of Lead Lined Chest. $ Fixed handling of tools/electrics in the Tree Farmer. % Updated English Locale.
Diffstat (limited to 'src/Java/gtPlusPlus/core/block')
-rw-r--r--src/Java/gtPlusPlus/core/block/machine/DecayablesChest.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Java/gtPlusPlus/core/block/machine/DecayablesChest.java b/src/Java/gtPlusPlus/core/block/machine/DecayablesChest.java
index efd6f88885..15d330defc 100644
--- a/src/Java/gtPlusPlus/core/block/machine/DecayablesChest.java
+++ b/src/Java/gtPlusPlus/core/block/machine/DecayablesChest.java
@@ -52,6 +52,8 @@ public class DecayablesChest extends BlockContainer implements ITileTooltip
super(Material.iron);
this.setBlockName("blockDecayablesChest");
this.setCreativeTab(AddToCreativeTab.tabMachines);
+ this.setHardness(5f);
+ this.setResistance(1f);
GameRegistry.registerBlock(this, ItemBlockBasicTile.class, "blockDecayablesChest");
LanguageRegistry.addName(this, "Lead Lined Box");
this.setBlockBounds(0.0625F, 0.0F, 0.0625F, 0.9375F, 0.875F, 0.9375F);