Skip to content

Commit 77ca01c

Browse files
committed
Fix a thing
1 parent e3c36f3 commit 77ca01c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

common/src/main/java/de/bluecolored/bluemap/common/rendermanager/WorldRegionRenderTask.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -348,9 +348,8 @@ private BoundsSituation checkTileBounds(Vector2i tile) {
348348
if (requireLight) {
349349
if (!chunk.isGenerated()) return TileState.NOT_GENERATED;
350350
if (!chunk.hasLightData()) return TileState.MISSING_LIGHT;
351-
} else {
352-
if (chunk.isGenerated()) chunksAreGenerated = true;
353351
}
352+
if (chunk.isGenerated()) chunksAreGenerated = true;
354353
if (chunk.getInhabitedTime() >= minInhabitedTime) chunksAreInhabited = true;
355354
}
356355
}

0 commit comments

Comments
 (0)