diff --git a/src/game/world/generator.rs b/src/game/world/generator.rs index 5d68002..649c1f6 100644 --- a/src/game/world/generator.rs +++ b/src/game/world/generator.rs @@ -42,8 +42,6 @@ impl WorldGen { * Generate block */ pub fn generate(block_pos: &Vector3, block: &mut WorldBlock) { - if block_pos.z > 32 as i32 { return; } - let mut rng = rand::thread_rng(); let noise = Perlin::new();