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;
|
2021-12-15 14:26:42 +01:00
|
|
|
import net.minecraft.world.level.block.SoundType;
|
2018-12-30 20:37:00 +01:00
|
|
|
|
|
|
|
public class BlockAnimalSpawner extends BlockContainerImpl {
|
2021-12-15 14:26:42 +01:00
|
|
|
|
2018-12-30 20:37:00 +01:00
|
|
|
public BlockAnimalSpawner() {
|
2023-07-08 12:32:27 +02:00
|
|
|
super("animal_spawner", BlockEntityAnimalSpawner.class, Properties.of().strength(2F).sound(SoundType.STONE));
|
2018-12-30 20:37:00 +01:00
|
|
|
}
|
|
|
|
}
|