From 868a1eaf986e6c26e3c6edd4032e4a0d3799d512 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Wed, 14 Nov 2018 16:40:21 +0100 Subject: [PATCH] Make the aura detector actually have hardness --- .../java/de/ellpeck/naturesaura/blocks/BlockAuraDetector.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/de/ellpeck/naturesaura/blocks/BlockAuraDetector.java b/src/main/java/de/ellpeck/naturesaura/blocks/BlockAuraDetector.java index 80364b5e..20551d2a 100644 --- a/src/main/java/de/ellpeck/naturesaura/blocks/BlockAuraDetector.java +++ b/src/main/java/de/ellpeck/naturesaura/blocks/BlockAuraDetector.java @@ -1,6 +1,7 @@ package de.ellpeck.naturesaura.blocks; import de.ellpeck.naturesaura.blocks.tiles.TileEntityAuraDetector; +import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; import net.minecraft.block.state.IBlockState; import net.minecraft.tileentity.TileEntity; @@ -11,6 +12,8 @@ public class BlockAuraDetector extends BlockContainerImpl { public BlockAuraDetector() { super(Material.ROCK, "aura_detector", TileEntityAuraDetector.class, "aura_detector"); + this.setSoundType(SoundType.STONE); + this.setHardness(2F); } @Override