chore(server): raise the max load radius to 24
This commit is contained in:
parent
7ab2488778
commit
213a113fc9
|
|
@ -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.
|
/// 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.
|
// 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.
|
/// 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;
|
const WORLDGEN_VERSION: u32 = 0;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue