package de.ellpeck.naturesaura.blocks; import de.ellpeck.naturesaura.blocks.tiles.TileEntityAnimalSpawner; import net.minecraft.block.SoundType; import net.minecraft.block.material.Material; public class BlockAnimalSpawner extends BlockContainerImpl { public BlockAnimalSpawner() { super(Material.ROCK, "animal_spawner", TileEntityAnimalSpawner.class, "animal_spawner"); this.setHardness(2F); this.setSoundType(SoundType.STONE); } }