Fixed mountain generation limits chonk bug

This commit is contained in:
Joshua Barretto 2019-06-05 22:38:43 +01:00
parent 35f0bebcc3
commit 9617f5f17e

View File

@ -468,7 +468,7 @@ impl SimChunk {
}
pub fn get_base_z(&self) -> f32 {
self.alt
self.alt - Z_TOLERANCE.0 * self.chaos
}
pub fn get_min_z(&self) -> f32 {