fix lighting
This commit is contained in:
parent
15459fc627
commit
5357dde0e3
3 changed files with 103 additions and 110 deletions
|
@ -24,7 +24,7 @@ public class ChunkClient extends Chunk {
|
|||
|
||||
private void genHeights() {
|
||||
int top = this.top;
|
||||
int bottom = this.bottom;
|
||||
int bottom = this.bottom < -64 ? -64 : this.bottom;
|
||||
this.minHeight = Integer.MAX_VALUE;
|
||||
|
||||
for(int x = 0; x < 16; ++x) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue