Skip to content

Commit af3a27d

Browse files
committed
merge: PR #4122
2 parents fe4f808 + 048307d commit af3a27d

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

engine/src/main/java/org/terasology/rendering/world/RenderableWorldImpl.java

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -379,11 +379,7 @@ public void dispose() {
379379
}
380380

381381
private boolean isChunkValidForRender(RenderableChunk chunk) {
382-
return chunk.isReady() && areSurroundingChunksLoaded(chunk);
383-
}
384-
385-
private boolean areSurroundingChunksLoaded(RenderableChunk chunk) {
386-
return worldProvider.getWorldViewAround(chunk.getPosition()) != null;
382+
return chunk.isReady();
387383
}
388384

389385
private boolean isChunkVisibleFromMainLight(RenderableChunk chunk) {

0 commit comments

Comments
 (0)