//! The configuration for the server, given from environment variables and lazy
//! initialized when needed.
use DVec3;
use OnceBool;
use env;
/// Return true if fast entity tracking is enabled on the server.
///
/// To enable this feature, set `MC173_FAST_ENTITY=1`.
/// Server world seed is currently hardcoded.
pub const SEED: i64 = 9999;
/// The spawn position is currently hardcoded.
pub const SPAWN_POS: DVec3 = new;
// pub const SPAWN_POS: DVec3 = DVec3::new(12550800.0, 100.0, 12550800.0);