From 85357a4b6fe829a945464809abe9002d5b0f2881 Mon Sep 17 00:00:00 2001 From: mat Date: Thu, 20 Jul 2023 05:01:58 -0500 Subject: derive Copy for ChunkSectionBlockPos --- azalea-core/src/position.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azalea-core/src/position.rs b/azalea-core/src/position.rs index 1e0c2ea5..77dc256a 100755 --- a/azalea-core/src/position.rs +++ b/azalea-core/src/position.rs @@ -234,7 +234,7 @@ impl ChunkBlockPos { /// The coordinates of a block inside a chunk section. Each coordinate must be /// in the range [0, 15]. -#[derive(Clone, Debug, Default, PartialEq, Eq)] +#[derive(Clone, Copy, Debug, Default, PartialEq, Eq)] pub struct ChunkSectionBlockPos { pub x: u8, pub y: u8, -- cgit v1.2.3