chore(server): raise the max load radius to 24

This commit is contained in:
Serkyo 2026-08-05 02:09:38 +02:00
parent 7ab2488778
commit 213a113fc9

View file

@ -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;