TheBrokenRail
29ea925306
All checks were successful
EnergonRelics/pipeline/head This commit looks good
Add PoeticRainbow Texture Set
19 lines
740 B
Java
19 lines
740 B
Java
package com.thebrokenrail.energonrelics.block.entity;
|
|
|
|
import com.thebrokenrail.energonrelics.config.HardcodedConfig;
|
|
import com.thebrokenrail.energonrelics.block.EnergonLightBlock;
|
|
import com.thebrokenrail.energonrelics.energy.core.EnergyReceiverBlockEntity;
|
|
import com.thebrokenrail.energonrelics.energy.core.util.Action;
|
|
import net.minecraft.block.entity.BlockEntityType;
|
|
|
|
public class EnergonLightBlockEntity extends EnergyReceiverBlockEntity {
|
|
public EnergonLightBlockEntity(BlockEntityType<?> type) {
|
|
super(type);
|
|
}
|
|
|
|
@Override
|
|
protected void tickEnergy() {
|
|
addAction(Action.createBlockStatePropertyAction(HardcodedConfig.ENERGON_LIGHT_ENERGY_REQUIRED, EnergonLightBlock.POWERED, true, false));
|
|
}
|
|
}
|