NaturesAura/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityPickupStopper.java
2021-12-04 15:40:09 +01:00

20 lines
478 B
Java

package de.ellpeck.naturesaura.blocks.tiles;
public class BlockEntityPickupStopper extends BlockEntityImpl {
public BlockEntityPickupStopper() {
super(ModTileEntities.PICKUP_STOPPER);
}
public float getRadius() {
return this.redstonePower / 2F;
}
@Override
public void onRedstonePowerChange(int newPower) {
super.onRedstonePowerChange(newPower);
if (!this.level.isClientSide)
this.sendToClients();
}
}