aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/serverbound_player_abilities_packet.rs
diff options
context:
space:
mode:
authorEightFactorial <murphkev000@gmail.com>2023-01-25 09:51:27 -0800
committerGitHub <noreply@github.com>2023-01-25 11:51:27 -0600
commit9a66cb97a659ed1f0e52ba3d9438de1d9b78d64a (patch)
tree16405cec7c45fb952509a5f93f6970b511315046 /azalea-protocol/src/packets/game/serverbound_player_abilities_packet.rs
parent473c74175c3a8189616bded528e3e6e4785dd3c8 (diff)
downloadazalea-drasl-9a66cb97a659ed1f0e52ba3d9438de1d9b78d64a.tar.xz
Fix test and packets (#60)
* Fix test and packets * Fix bug, fix a couple more packets * add tests and fix stuff * fix warnings Co-authored-by: Ubuntu <github@matdoes.dev>
Diffstat (limited to 'azalea-protocol/src/packets/game/serverbound_player_abilities_packet.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/serverbound_player_abilities_packet.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/serverbound_player_abilities_packet.rs b/azalea-protocol/src/packets/game/serverbound_player_abilities_packet.rs
index ab1ae9a0..7f979363 100755
--- a/azalea-protocol/src/packets/game/serverbound_player_abilities_packet.rs
+++ b/azalea-protocol/src/packets/game/serverbound_player_abilities_packet.rs
@@ -23,7 +23,7 @@ impl McBufWritable for ServerboundPlayerAbilitiesPacket {
if self.is_flying {
byte |= 2;
}
- byte.write_into(buf)?;
+ u8::write_into(&byte, buf)?;
Ok(())
}
}