Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public int getLightFor(EnumSkyBlock lightType, BlockPos pos) {
- // it may not look like this but it's actually the same logic as in vanilla
- // seriously, it is the same
- if (storage == NULL_BLOCK_STORAGE) {
- if (this.column.canSeeSky(pos)) {
- return lightType.defaultLightValue;
- }
- return 0;
- }
- int localX = Coords.blockToLocal(pos.getX());
- int localY = Coords.blockToLocal(pos.getY());
- int localZ = Coords.blockToLocal(pos.getZ());
- switch (lightType) {
- case SKY:
- if (!this.world.getProvider().func_191066_m()) {
- return 0;
- }
- return this.storage.getExtSkylightValue(localX, localY, localZ);
- case BLOCK:
- return this.storage.getExtBlocklightValue(localX, localY, localZ);
- default:
- return lightType.defaultLightValue;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement