We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e3c36f3 commit 77ca01cCopy full SHA for 77ca01c
common/src/main/java/de/bluecolored/bluemap/common/rendermanager/WorldRegionRenderTask.java
@@ -348,9 +348,8 @@ private BoundsSituation checkTileBounds(Vector2i tile) {
348
if (requireLight) {
349
if (!chunk.isGenerated()) return TileState.NOT_GENERATED;
350
if (!chunk.hasLightData()) return TileState.MISSING_LIGHT;
351
- } else {
352
- if (chunk.isGenerated()) chunksAreGenerated = true;
353
}
+ if (chunk.isGenerated()) chunksAreGenerated = true;
354
if (chunk.getInhabitedTime() >= minInhabitedTime) chunksAreInhabited = true;
355
356
0 commit comments