aboutsummaryrefslogtreecommitdiff
path: root/azalea-world/src
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-10-30 19:50:37 +0100
committermat <git@matdoes.dev>2025-10-30 19:50:37 +0100
commit7d0c7553fd5a0210285a51a65c10f898f641a0cc (patch)
tree2bfc5747c55622082761f7d6e3cabf86ed8ae2e4 /azalea-world/src
parent03a496fc7d952b1136cb717f2e8d1ccfb798ee64 (diff)
downloadazalea-drasl-7d0c7553fd5a0210285a51a65c10f898f641a0cc.tar.xz
Remove unnecessary MoveEntityError and MovePlayerError types and other cleanup
Diffstat (limited to 'azalea-world/src')
-rw-r--r--azalea-world/src/lib.rs9
1 files changed, 0 insertions, 9 deletions
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),
-}