NaturesAura/src/main/java/de/ellpeck/naturesaura/blocks/BlockAnimalSpawner.java

12 lines
444 B
Java
Raw Normal View History

2018-12-30 20:37:00 +01:00
package de.ellpeck.naturesaura.blocks;
2021-12-04 15:40:09 +01:00
import de.ellpeck.naturesaura.blocks.tiles.BlockEntityAnimalSpawner;
2018-12-30 20:37:00 +01:00
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
public class BlockAnimalSpawner extends BlockContainerImpl {
public BlockAnimalSpawner() {
2021-12-04 15:40:09 +01:00
super("animal_spawner", BlockEntityAnimalSpawner::new, Properties.create(Material.ROCK).hardnessAndResistance(2F).sound(SoundType.STONE));
2018-12-30 20:37:00 +01:00
}
}