diff --git a/voxygen/src/mesh/terrain.rs b/voxygen/src/mesh/terrain.rs index 87a688882e..f279cff85c 100644 --- a/voxygen/src/mesh/terrain.rs +++ b/voxygen/src/mesh/terrain.rs @@ -37,8 +37,8 @@ fn calc_light + ReadVol + Debug>( const SUNLIGHT: u8 = 24; let outer = Aabb { - min: bounds.min - SUNLIGHT as i32, - max: bounds.max + SUNLIGHT as i32, + min: bounds.min - Vec3::new(SUNLIGHT as i32, SUNLIGHT as i32, 1), + max: bounds.max + Vec3::new(SUNLIGHT as i32, SUNLIGHT as i32, 1), }; let mut vol_cached = vol.cached();