diff options
| author | mat <git@matdoes.dev> | 2025-05-09 15:00:12 -1200 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2025-05-09 15:00:12 -1200 |
| commit | 6a5a88700c3f649fab1abc4a51f6fac9281db874 (patch) | |
| tree | bed73430ba622df59b926f173e35c1d0a7683c60 /azalea-core/src | |
| parent | e1d3b902ba08170e4ee82c53f216445f57fbc47e (diff) | |
| download | azalea-drasl-6a5a88700c3f649fab1abc4a51f6fac9281db874.tar.xz | |
fix offline-mode cert warnings and improve some docs
Diffstat (limited to 'azalea-core/src')
| -rw-r--r-- | azalea-core/src/hit_result.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-core/src/hit_result.rs b/azalea-core/src/hit_result.rs index 2fc78115..76f7ca84 100644 --- a/azalea-core/src/hit_result.rs +++ b/azalea-core/src/hit_result.rs @@ -6,7 +6,7 @@ use crate::{ /// The block or entity that our player is looking at and can interact with. /// /// If there's nothing, it'll be a [`BlockHitResult`] with `miss` set to true. -#[derive(Debug, Clone, Copy, PartialEq)] +#[derive(Debug, Clone, PartialEq)] pub enum HitResult { Block(BlockHitResult), /// TODO @@ -37,7 +37,7 @@ impl HitResult { } } -#[derive(Debug, Clone, Copy, PartialEq)] +#[derive(Debug, Clone, PartialEq)] pub struct BlockHitResult { pub location: Vec3, pub direction: Direction, |
