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;