Adjust surface to be higher up

This is a game about digging down.
This still leaves ~8000 km to build up
This commit is contained in:
crumblingstatue 2023-04-03 11:21:22 +02:00
parent 7918b54520
commit 045977f800

View file

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