Make pessimistic assumption on lighting to handle broken chunk

generators
This commit is contained in:
Mike Primm 2021-12-20 18:07:54 -06:00
parent 99caded016
commit a5bbe6bdd4
1 changed files with 1 additions and 1 deletions

View File

@ -902,7 +902,7 @@ public abstract class GenericMapChunkCache extends MapChunkCache {
if (status.equals(litStates[i])) { hasLitState = true; }
}
}
boolean hasLight = hasLitState; // Assume good light in a lit state
boolean hasLight = false; // pessimistic: only has light if we see it, due to WB and other flawed chunk generation hasLitState; // Assume good light in a lit state
// Start generic chunk builder
GenericChunk.Builder bld = new GenericChunk.Builder(dw.minY, dw.worldheight);