Files
CraterLib/Common/src/main/java/me/hypherionmc/craterlib/util/BlockStateUtils.java

19 lines
624 B
Java
Raw Normal View History

2022-05-12 00:20:18 +02:00
package me.hypherionmc.craterlib.util;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.world.level.block.state.properties.BlockStateProperties;
import java.util.function.ToIntFunction;
public class BlockStateUtils {
public static ToIntFunction<BlockState> createLightLevelFromLitBlockState(int litLevel) {
return state -> state.getValue(BlockStateProperties.LIT) ? litLevel : 0;
}
public static ToIntFunction<BlockState> createLightLevelFromPoweredBlockState(int litLevel) {
return state -> state.getValue(BlockStateProperties.POWERED) ? litLevel : 0;
}
2022-05-12 00:18:53 +02:00
}