diff --git a/common/src/terrain/block.rs b/common/src/terrain/block.rs index ef3b5d2ffb..fce23c4a57 100644 --- a/common/src/terrain/block.rs +++ b/common/src/terrain/block.rs @@ -28,7 +28,7 @@ impl Block { match self.kind { 0 => None, 1 => Some(0.85), - _ => Some(1.0), + _ => Some(3.0), } } } diff --git a/world/src/column/mod.rs b/world/src/column/mod.rs index 3be71ba02d..43e5acf019 100644 --- a/world/src/column/mod.rs +++ b/world/src/column/mod.rs @@ -142,7 +142,7 @@ impl<'a> Sampler for ColumnGen<'a> { let (alt, ground) = if dist_to_path < 5.0 { (alt - 1.5, Lerp::lerp( - Rgb::new(0.25, 0.15, 0.05), + Rgb::new(0.15, 0.075, 0.05), Rgb::new(0.4, 0.25, 0.0), marble, ))