aboutsummaryrefslogtreecommitdiff
path: root/azalea-entity/src/lib.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2025-09-21 09:16:10 -1030
committermat <git@matdoes.dev>2025-09-21 11:46:13 -0800
commitaefa908e32032616cb356e7f4165cbb8922edbcf (patch)
tree2c15096917c009b9fd823e7d57894382904f7951 /azalea-entity/src/lib.rs
parentf049eee0496083fe6347e2f4a4f7b8e4512883ee (diff)
downloadazalea-drasl-aefa908e32032616cb356e7f4165cbb8922edbcf.tar.xz
fix pickable entity query
Diffstat (limited to 'azalea-entity/src/lib.rs')
-rw-r--r--azalea-entity/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-entity/src/lib.rs b/azalea-entity/src/lib.rs
index 30e00ccb..6c3603e6 100644
--- a/azalea-entity/src/lib.rs
+++ b/azalea-entity/src/lib.rs
@@ -127,7 +127,7 @@ pub fn on_pos(offset: f32, chunk_storage: &ChunkStorage, pos: Position) -> Block
/// The Minecraft UUID of the entity. For players, this is their actual player
/// UUID, and for other entities it's just random.
-#[derive(Component, Deref, DerefMut, Clone, Copy, Default)]
+#[derive(Component, Deref, DerefMut, Clone, Copy, Default, PartialEq)]
pub struct EntityUuid(Uuid);
impl EntityUuid {
pub fn new(uuid: Uuid) -> Self {