2018-11-24 15:06:18 +01:00
|
|
|
package de.ellpeck.naturesaura.blocks.tiles;
|
|
|
|
|
2020-01-21 23:02:39 +01:00
|
|
|
import net.minecraft.tileentity.TileEntityType;
|
|
|
|
|
2018-11-24 15:06:18 +01:00
|
|
|
public class TileEntitySpawnLamp extends TileEntityImpl {
|
|
|
|
|
2020-01-21 23:02:39 +01:00
|
|
|
public TileEntitySpawnLamp(TileEntityType<?> tileEntityTypeIn) {
|
|
|
|
super(tileEntityTypeIn);
|
|
|
|
}
|
|
|
|
|
2018-11-24 15:06:18 +01:00
|
|
|
public int getRadius() {
|
|
|
|
return this.redstonePower * 3;
|
|
|
|
}
|
|
|
|
|
2019-01-27 13:57:34 +01:00
|
|
|
@Override
|
2019-03-19 17:21:06 +01:00
|
|
|
public void onRedstonePowerChange(int newPower) {
|
|
|
|
super.onRedstonePowerChange(newPower);
|
2019-01-27 13:57:34 +01:00
|
|
|
if (!this.world.isRemote)
|
|
|
|
this.sendToClients();
|
|
|
|
}
|
2018-11-24 15:06:18 +01:00
|
|
|
}
|