NaturesAura/src/main/java/de/ellpeck/naturesaura/blocks/tiles/TileEntityPickupStopper.java
2019-03-19 17:21:06 +01:00

16 lines
378 B
Java

package de.ellpeck.naturesaura.blocks.tiles;
public class TileEntityPickupStopper extends TileEntityImpl {
public float getRadius() {
return this.redstonePower / 2F;
}
@Override
public void onRedstonePowerChange(int newPower) {
super.onRedstonePowerChange(newPower);
if (!this.world.isRemote)
this.sendToClients();
}
}