mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 20:59:09 +01:00
14 lines
467 B
Java
14 lines
467 B
Java
|
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);
|
||
|
}
|
||
|
}
|