From 213a113fc9ab52520a771341a79641f43941effc Mon Sep 17 00:00:00 2001 From: Serkyo Date: Wed, 5 Aug 2026 02:09:38 +0200 Subject: [PATCH] chore(server): raise the max load radius to 24 --- crates/server/src/client_stream.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/server/src/client_stream.rs b/crates/server/src/client_stream.rs index 48fce0e..e029b57 100644 --- a/crates/server/src/client_stream.rs +++ b/crates/server/src/client_stream.rs @@ -13,7 +13,7 @@ use crate::world_server::{ServerWorld, cylinder_chunks}; /// Upper bound, in chunks, on a client's requested load radius. A larger request is clamped to this, bounding the per-client resident set and the reconcile cost the server performs on the client's behalf. // TODO: derive from server configuration and per-tier LOD limits. -pub const SERVER_MAX_RADIUS: u16 = 12; +pub const SERVER_MAX_RADIUS: u16 = 24; /// Worldgen version stamped on delivered chunk diffs. A single version exists today; this becomes the chunk's stored version once worldgen versioning lands. const WORLDGEN_VERSION: u32 = 0;