diff options
| author | mat <github@matdoes.dev> | 2022-04-27 15:09:33 +0000 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-04-27 15:09:33 +0000 |
| commit | 60d1fa50c32c202dd04895caa51172948a4760b6 (patch) | |
| tree | 2af30c7de1d37bc3150a637e8b3150d40d95feea /azalea-protocol/src/packets/game/mod.rs | |
| parent | 4f9f2468f0fc80b19baac6904c05c9cc9a9cb61a (diff) | |
| download | azalea-drasl-60d1fa50c32c202dd04895caa51172948a4760b6.tar.xz | |
add player position packet
Diffstat (limited to 'azalea-protocol/src/packets/game/mod.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/mod.rs b/azalea-protocol/src/packets/game/mod.rs index d197015a..436e0cc2 100755 --- a/azalea-protocol/src/packets/game/mod.rs +++ b/azalea-protocol/src/packets/game/mod.rs @@ -5,6 +5,7 @@ pub mod clientbound_disconnect_packet; pub mod clientbound_entity_event_packet; pub mod clientbound_login_packet; pub mod clientbound_player_abilities_packet; +pub mod clientbound_player_position_packet; pub mod clientbound_recipe_packet; pub mod clientbound_set_carried_item_packet; pub mod clientbound_update_recipes_packet; @@ -24,6 +25,7 @@ declare_state_packets!( 0x18: clientbound_custom_payload_packet::ClientboundCustomPayloadPacket, 0x26: clientbound_login_packet::ClientboundLoginPacket, 0x32: clientbound_player_abilities_packet::ClientboundPlayerAbilitiesPacket, + 0x38: clientbound_player_position_packet::ClientboundPlayerPositionPacket, 0x39: clientbound_recipe_packet::ClientboundRecipePacket, 0x48: clientbound_set_carried_item_packet::ClientboundSetCarriedItemPacket, 0x4a: clientbound_update_view_distance_packet::ClientboundUpdateViewDistancePacket, |
