Merge pull request #38 from mooziii/fix-chunk-size

Change chunk size
This commit is contained in:
Jakob K
2022-02-19 16:18:34 +01:00
committed by GitHub

View File

@@ -18,7 +18,7 @@ val Location.worldOrException: World
*/
val Chunk.allBlocks
get() = LinkedHashSet<Block>().apply {
for (y in 0 until 256) {
for (y in -64 until 320) {
for (x in 0 until 16)
for (z in 0 until 16)
add(getBlock(x, y, z))