(BlockPos pos)
| 2772 | } |
| 2773 | |
| 2774 | public boolean checkLight(BlockPos pos) |
| 2775 | { |
| 2776 | boolean flag = false; |
| 2777 | |
| 2778 | if (!this.provider.getHasNoSky()) |
| 2779 | { |
| 2780 | flag |= this.checkLightFor(EnumSkyBlock.SKY, pos); |
| 2781 | } |
| 2782 | |
| 2783 | flag = flag | this.checkLightFor(EnumSkyBlock.BLOCK, pos); |
| 2784 | return flag; |
| 2785 | } |
| 2786 | |
| 2787 | /** |
| 2788 | * gets the light level at the supplied position |
no test coverage detected