(EnumSkyBlock type, BlockPos pos, int lightValue)
| 804 | } |
| 805 | |
| 806 | public void setLightFor(EnumSkyBlock type, BlockPos pos, int lightValue) |
| 807 | { |
| 808 | if (this.isValid(pos)) |
| 809 | { |
| 810 | if (this.isBlockLoaded(pos)) |
| 811 | { |
| 812 | Chunk chunk = this.getChunkFromBlockCoords(pos); |
| 813 | chunk.setLightFor(type, pos, lightValue); |
| 814 | this.notifyLightSet(pos); |
| 815 | } |
| 816 | } |
| 817 | } |
| 818 | |
| 819 | public void notifyLightSet(BlockPos pos) |
| 820 | { |
no test coverage detected