From 47d2b68b66fb9958b57c3ff81f1e73e8f6afd91b Mon Sep 17 00:00:00 2001 From: Alkalus <3060479+draknyte1@users.noreply.github.com> Date: Mon, 29 Apr 2019 12:19:35 +1000 Subject: $ 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. --- src/Java/gtPlusPlus/core/block/machine/DecayablesChest.java | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/Java/gtPlusPlus/core/block/machine') 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); -- cgit