diff --git a/src/world/layer.rs b/src/world/layer.rs index 89cff41..4365e1f 100644 --- a/src/world/layer.rs +++ b/src/world/layer.rs @@ -28,7 +28,6 @@ impl BlockHeight { #[derive(Debug, Clone, Copy, Serialize, Deserialize)] pub struct BlockInfo { pub block_type: BlockType, - pub y: BlockHeight, pub depth: Option, } @@ -66,7 +65,6 @@ impl OptionBlockInfoExt for Option { if self.is_none() { *self = Some(BlockInfo { block_type, - y, depth: None, }); }