Fix empty chunks not generating

This is most useful in the end, where there are many empty chunks
This commit is contained in:
James Seibel
2021-05-31 11:53:59 -05:00
parent bebe4b7436
commit 06232f65b2
@@ -72,7 +72,7 @@ public class LodBuilder
// don't try to create an LOD object
// if for some reason we aren't
// given a valid chunk object
if (chunk == null || !LodUtils.chunkHasBlockData(chunk))
if (chunk == null)
return;
Thread thread = new Thread(() ->