mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 12:59:08 +01:00
14 lines
312 B
Java
14 lines
312 B
Java
package de.ellpeck.naturesaura.blocks.tiles;
|
|
|
|
public class TileEntitySpawnLamp extends TileEntityImpl {
|
|
|
|
public int getRadius() {
|
|
return this.redstonePower * 3;
|
|
}
|
|
|
|
@Override
|
|
public void onRedstonePowerChange() {
|
|
if (!this.world.isRemote)
|
|
this.sendToClients();
|
|
}
|
|
}
|