From 2e4a7a10df266eaf007c63555b330b862fa0bd60 Mon Sep 17 00:00:00 2001 From: a dinosaur Date: Mon, 2 Sep 2024 18:28:36 +1000 Subject: [PATCH] use chunkid typealias for clarity in concurrent worldgen --- Sources/Voxelotl/World.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Voxelotl/World.swift b/Sources/Voxelotl/World.swift index 4f95a43..b1517ff 100644 --- a/Sources/Voxelotl/World.swift +++ b/Sources/Voxelotl/World.swift @@ -63,7 +63,7 @@ public class World { self._generator.reset(seed: seed) let orig = SIMD3(width, height, depth) / 2 - let localChunks = ConcurrentDictionary, Chunk>() + let localChunks = ConcurrentDictionary() let queue = OperationQueue() queue.qualityOfService = .userInitiated for z in 0..