mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
12 lines
448 B
Java
12 lines
448 B
Java
package de.ellpeck.naturesaura.blocks;
|
|
|
|
import de.ellpeck.naturesaura.blocks.tiles.BlockEntityAnimalSpawner;
|
|
import net.minecraft.world.level.block.SoundType;
|
|
import net.minecraft.world.level.material.Material;
|
|
|
|
public class BlockAnimalSpawner extends BlockContainerImpl {
|
|
|
|
public BlockAnimalSpawner() {
|
|
super("animal_spawner", BlockEntityAnimalSpawner.class, Properties.of(Material.STONE).strength(2F).sound(SoundType.STONE));
|
|
}
|
|
}
|