Skip to content

Commit 717c5da

Browse files
committed
Lower default render distance
1 parent c9ab19b commit 717c5da

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/System/VoxelSystem.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function register(EntitiesInterface $entities) : void
3434
// $this->chunkAllocator->renderDistance = 8;
3535
// $this->chunkAllocator->ensureChunksLoaded(0, 0, 0, 4096);
3636
// $this->chunkAllocator->renderDistance = 8;
37-
$this->chunkAllocator->renderDistance = 8;
37+
$this->chunkAllocator->renderDistance = 4;
3838
$this->chunkAllocator->ensureChunksLoaded(0, 0, 0, 4096);
3939
}
4040

src/Voxel/ChunkAllocator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class ChunkAllocator
3939
/**
4040
* Chunk render distance.
4141
*/
42-
public int $renderDistance = 8;
42+
public int $renderDistance = 4;
4343

4444
/**
4545
* Max height of the world.

0 commit comments

Comments
 (0)