Advertisement
Guest User

Untitled

a guest
Nov 18th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.79 KB | None | 0 0
  1.     public int getLightFor(EnumSkyBlock lightType, BlockPos pos) {
  2.         // it may not look like this but it's actually the same logic as in vanilla
  3.         // seriously, it is the same
  4.         if (storage == NULL_BLOCK_STORAGE) {
  5.             if (this.column.canSeeSky(pos)) {
  6.                 return lightType.defaultLightValue;
  7.             }
  8.             return 0;
  9.         }
  10.  
  11.         int localX = Coords.blockToLocal(pos.getX());
  12.         int localY = Coords.blockToLocal(pos.getY());
  13.         int localZ = Coords.blockToLocal(pos.getZ());
  14.  
  15.         switch (lightType) {
  16.             case SKY:
  17.                 if (!this.world.getProvider().func_191066_m()) {
  18.                     return 0;
  19.                 }
  20.                 return this.storage.getExtSkylightValue(localX, localY, localZ);
  21.             case BLOCK:
  22.                 return this.storage.getExtBlocklightValue(localX, localY, localZ);
  23.             default:
  24.                 return lightType.defaultLightValue;
  25.         }
  26.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement