diff options
| author | mat <git@matdoes.dev> | 2026-05-06 03:36:16 -0100 |
|---|---|---|
| committer | mat <git@matdoes.dev> | 2026-05-07 08:05:58 -1200 |
| commit | 9ffd0e80bbb3feace231553d6539124585b03e3c (patch) | |
| tree | ad8df7d07df9f8f542e288c263d76b8ffd637416 /azalea/src/client_impl/interact.rs | |
| parent | 4d1f430408dc6854c1af5fb14b2641e293a9cf43 (diff) | |
| download | azalea-drasl-9ffd0e80bbb3feace231553d6539124585b03e3c.tar.xz | |
change panicking functions in Client and EntityRef to return an AzaleaResult instead
Diffstat (limited to 'azalea/src/client_impl/interact.rs')
| -rw-r--r-- | azalea/src/client_impl/interact.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/azalea/src/client_impl/interact.rs b/azalea/src/client_impl/interact.rs index b3cda1e2..bec62c20 100644 --- a/azalea/src/client_impl/interact.rs +++ b/azalea/src/client_impl/interact.rs @@ -3,13 +3,13 @@ use azalea_core::{hit_result::HitResult, position::BlockPos}; use azalea_protocol::packets::game::s_interact::InteractionHand; use bevy_ecs::entity::Entity; -use crate::Client; +use crate::{Client, client_impl::error::AzaleaResult}; impl Client { /// Returns the current [`HitResult`], which is the block or entity in the /// client's crosshair. - pub fn hit_result(&self) -> HitResult { - (**self.component::<HitResultComponent>()).clone() + pub fn hit_result(&self) -> AzaleaResult<HitResult> { + Ok((**self.component::<HitResultComponent>()?).clone()) } /// Right-click a block. |
