aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_player_position_packet.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/clientbound_player_position_packet.rs')
-rw-r--r--azalea-protocol/src/packets/game/clientbound_player_position_packet.rs12
1 files changed, 3 insertions, 9 deletions
diff --git a/azalea-protocol/src/packets/game/clientbound_player_position_packet.rs b/azalea-protocol/src/packets/game/clientbound_player_position_packet.rs
index 5bb40d84..e47ca9e1 100644
--- a/azalea-protocol/src/packets/game/clientbound_player_position_packet.rs
+++ b/azalea-protocol/src/packets/game/clientbound_player_position_packet.rs
@@ -1,9 +1,7 @@
-// i don't know the actual name of this packet, i couldn't find it in the source code
+use std::io::Read;
use crate::mc_buf::{McBufReadable, McBufWritable, Readable};
-use async_trait::async_trait;
use packet_macros::GamePacket;
-use tokio::io::AsyncRead;
#[derive(Clone, Debug, GamePacket)]
pub struct ClientboundPlayerPositionPacket {
@@ -29,13 +27,9 @@ pub struct RelativeArguments {
pub x_rot: bool,
}
-#[async_trait]
impl McBufReadable for RelativeArguments {
- async fn read_into<R>(buf: &mut R) -> Result<Self, String>
- where
- R: AsyncRead + std::marker::Unpin + std::marker::Send,
- {
- let byte = buf.read_byte().await?;
+ fn read_into(buf: &mut impl Read) -> Result<Self, String> {
+ let byte = buf.read_byte()?;
Ok(RelativeArguments {
x: byte & 0b1 != 0,
y: byte & 0b10 != 0,