aboutsummaryrefslogtreecommitdiff
path: root/azalea-client/src/local_player.rs
diff options
context:
space:
mode:
authormat <git@matdoes.dev>2024-12-24 04:37:55 +0000
committermat <git@matdoes.dev>2024-12-24 04:37:55 +0000
commit958848e8ed10c7b8a83c9faea1fac6eaac39b018 (patch)
tree9e09f0994b779db00c65c9a25168818b61724e8c /azalea-client/src/local_player.rs
parent30cbeecdfea4199b8f134c8394c677588ff9a2ce (diff)
downloadazalea-drasl-958848e8ed10c7b8a83c9faea1fac6eaac39b018.tar.xz
improve some docs and apis related to pathfinder
Diffstat (limited to 'azalea-client/src/local_player.rs')
-rw-r--r--azalea-client/src/local_player.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-client/src/local_player.rs b/azalea-client/src/local_player.rs
index 0a8f006d..7c9254a7 100644
--- a/azalea-client/src/local_player.rs
+++ b/azalea-client/src/local_player.rs
@@ -144,7 +144,7 @@ pub enum HandlePacketError {
#[error(transparent)]
Io(#[from] io::Error),
#[error(transparent)]
- Other(#[from] anyhow::Error),
+ Other(#[from] Box<dyn std::error::Error + Send + Sync>),
#[error("{0}")]
Send(#[from] mpsc::error::SendError<AzaleaEvent>),
}