From 2232ca78b75a8070def3620ea1f9b573080274f5 Mon Sep 17 00:00:00 2001 From: Monty Marz Date: Wed, 5 Aug 2020 19:50:12 +0200 Subject: [PATCH] Fixed test world to run again Update test_world.rs --- server/src/test_world.rs | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/server/src/test_world.rs b/server/src/test_world.rs index 1b6d070e61..b95fabfb61 100644 --- a/server/src/test_world.rs +++ b/server/src/test_world.rs @@ -1,5 +1,5 @@ use common::{ - generation::{ChunkSupplement, EntityInfo, EntityKind}, + generation::{ChunkSupplement, EntityInfo}, terrain::{Block, BlockKind, TerrainChunk, TerrainChunkMeta, TerrainChunkSize}, vol::{ReadVol, RectVolSize, Vox, WriteVol}, }; @@ -30,17 +30,10 @@ impl World { let mut supplement = ChunkSupplement::default(); - if chunk_pos.map(|e| e % 8 == 0).reduce_and() { - supplement = supplement.with_entity(EntityInfo { - pos: Vec3::::from(chunk_pos.map(|e| e as f32 * 32.0)) + Vec3::unit_z() * 256.0, - kind: EntityKind::Waypoint, - }); - } - Ok(( TerrainChunk::new( 256 + if rng.gen::() < 64 { height } else { 0 }, - Block::new(BlockKind::Dense, Rgb::new(200, 220, 255)), + Block::new(BlockKind::Grass, Rgb::new(11, 102, 35)), Block::empty(), TerrainChunkMeta::void(), ),