From b4867ec01267f73553367e34020b73c1dc3638d1 Mon Sep 17 00:00:00 2001 From: Relintai Date: Sat, 23 May 2020 18:24:25 +0200 Subject: [PATCH] Revert the despawn range. --- game/voxelman/world/TVVoxelWorld.gd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/voxelman/world/TVVoxelWorld.gd b/game/voxelman/world/TVVoxelWorld.gd index 89e1c24d..32c28207 100644 --- a/game/voxelman/world/TVVoxelWorld.gd +++ b/game/voxelman/world/TVVoxelWorld.gd @@ -82,7 +82,7 @@ func _process(delta): var l : float = (Vector2(cpos.x, cpos.z) - Vector2(c.position_x, c.position_z)).length() - if l > chunk_spawn_range + 3: + if l > chunk_spawn_range + 2: # print("despawn " + str(Vector3(c.position_x, c.position_y, c.position_z))) remove_chunk_index(i) i -= 1