From 045977f800824004dc6ac5ca8400cdf45698b7dc Mon Sep 17 00:00:00 2001 From: crumblingstatue Date: Mon, 3 Apr 2023 11:21:22 +0200 Subject: [PATCH] Adjust surface to be higher up This is a game about digging down. This still leaves ~8000 km to build up --- src/math.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/math.rs b/src/math.rs index cc7b68b..8f581c8 100644 --- a/src/math.rs +++ b/src/math.rs @@ -20,7 +20,7 @@ impl WorldPos { /// Horizontal center of the world pub const CENTER: WorldPosScalar = WorldPosScalar::MAX / 2; /// Vertical surface level - pub const SURFACE: WorldPosScalar = WorldPosScalar::MAX / 3; + pub const SURFACE: WorldPosScalar = WorldPosScalar::MAX / 16; pub const SURFACE_CENTER: Self = Self { x: Self::CENTER, y: Self::SURFACE,