NaturesAura/src/main/java/de/ellpeck/naturesaura/blocks/tiles/BlockEntitySpawnLamp.java

43 lines
1.1 KiB
Java
Raw Normal View History

2018-11-24 15:06:18 +01:00
package de.ellpeck.naturesaura.blocks.tiles;
2021-12-04 15:40:09 +01:00
import de.ellpeck.naturesaura.api.misc.ILevelData;
import de.ellpeck.naturesaura.misc.LevelData;
2021-12-08 00:31:29 +01:00
import net.minecraft.core.BlockPos;
import net.minecraft.world.level.block.state.BlockState;
2021-12-04 15:40:09 +01:00
public class BlockEntitySpawnLamp extends BlockEntityImpl {
2018-11-24 15:06:18 +01:00
2021-12-08 00:31:29 +01:00
public BlockEntitySpawnLamp(BlockPos pos, BlockState state) {
super(ModTileEntities.SPAWN_LAMP, pos, state);
2020-01-21 23:02:39 +01:00
}
2018-11-24 15:06:18 +01:00
public int getRadius() {
return this.redstonePower * 3;
}
@Override
2021-12-08 00:31:29 +01:00
public void onLoad() {
super.onLoad();
2021-12-04 15:40:09 +01:00
if (!this.level.isClientSide) {
2021-12-15 16:30:22 +01:00
var data = (LevelData) ILevelData.getLevelData(this.level);
data.spawnLamps.add(this);
}
}
@Override
2021-12-08 00:31:29 +01:00
public void setRemoved() {
super.setRemoved();
2021-12-04 15:40:09 +01:00
if (!this.level.isClientSide) {
2021-12-15 16:30:22 +01:00
var data = (LevelData) ILevelData.getLevelData(this.level);
data.spawnLamps.remove(this);
}
}
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);
2021-12-04 15:40:09 +01:00
if (!this.level.isClientSide)
2019-01-27 13:57:34 +01:00
this.sendToClients();
}
2018-11-24 15:06:18 +01:00
}