From 7d0c7553fd5a0210285a51a65c10f898f641a0cc Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 30 Oct 2025 19:50:37 +0100 Subject: Remove unnecessary MoveEntityError and MovePlayerError types and other cleanup --- azalea-world/src/lib.rs | 9 --------- 1 file changed, 9 deletions(-) (limited to 'azalea-world/src') diff --git a/azalea-world/src/lib.rs b/azalea-world/src/lib.rs index 8514ce24..eea574c1 100644 --- a/azalea-world/src/lib.rs +++ b/azalea-world/src/lib.rs @@ -10,16 +10,7 @@ pub mod iterators; pub mod palette; mod world; -use std::backtrace::Backtrace; - pub use bit_storage::BitStorage; pub use chunk_storage::{Chunk, ChunkStorage, PartialChunkStorage, Section}; pub use container::*; -use thiserror::Error; pub use world::*; - -#[derive(Error, Debug)] -pub enum MoveEntityError { - #[error("Entity doesn't exist")] - EntityDoesNotExist(Backtrace), -} -- cgit v1.2.3