diff options
| author | mat <git@matdoes.dev> | 2023-07-20 05:01:58 -0500 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2023-07-20 05:01:58 -0500 |
| commit | 85357a4b6fe829a945464809abe9002d5b0f2881 (patch) | |
| tree | 6a7d22e30643f1233d53d48120e4f32a25fc69df | |
| parent | a985cc744205ffa62fa68114dbf1a282db3ba28e (diff) | |
| download | azalea-drasl-85357a4b6fe829a945464809abe9002d5b0f2881.tar.xz | |
derive Copy for ChunkSectionBlockPos
| -rwxr-xr-x | azalea-core/src/position.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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, |
