diff options
| author | mat <github@matdoes.dev> | 2022-05-01 15:19:51 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-05-01 15:19:51 -0500 |
| commit | 388b0fc0f294f1b7c47853e34cedf2b9a1b4e49d (patch) | |
| tree | 7463acc478252e7f96931132a9a823ae365df606 /azalea-protocol/src/packets/game/mod.rs | |
| parent | 1a68d55eaf8cb2a108bf850776ee81c74ebaaf5a (diff) | |
| download | azalea-drasl-388b0fc0f294f1b7c47853e34cedf2b9a1b4e49d.tar.xz | |
ClientboundUpdateAttributesPacket & ClientboundEntityVelocityPacket
Diffstat (limited to 'azalea-protocol/src/packets/game/mod.rs')
| -rwxr-xr-x | azalea-protocol/src/packets/game/mod.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/mod.rs b/azalea-protocol/src/packets/game/mod.rs index e27255ac..22b65bff 100755 --- a/azalea-protocol/src/packets/game/mod.rs +++ b/azalea-protocol/src/packets/game/mod.rs @@ -5,6 +5,7 @@ pub mod clientbound_custom_payload_packet; pub mod clientbound_declare_commands_packet; pub mod clientbound_disconnect_packet; pub mod clientbound_entity_event_packet; +pub mod clientbound_entity_velocity_packet; pub mod clientbound_level_chunk_with_light_packet; pub mod clientbound_light_update_packet; pub mod clientbound_login_packet; @@ -15,6 +16,7 @@ pub mod clientbound_recipe_packet; pub mod clientbound_set_carried_item_packet; pub mod clientbound_set_chunk_cache_center; pub mod clientbound_set_entity_data_packet; +pub mod clientbound_update_attributes_packet; pub mod clientbound_update_recipes_packet; pub mod clientbound_update_tags_packet; pub mod clientbound_update_view_distance_packet; @@ -46,6 +48,8 @@ declare_state_packets!( 0x49: clientbound_set_chunk_cache_center::ClientboundSetChunkCacheCenterPacket, 0x4a: clientbound_update_view_distance_packet::ClientboundUpdateViewDistancePacket, 0x4d: clientbound_set_entity_data_packet::ClientboundSetEntityDataPacket, + 0x4f: clientbound_entity_velocity_packet::ClientboundEntityVelocityPacket, + 0x64: clientbound_update_attributes_packet::ClientboundUpdateAttributesPacket, 0x66: clientbound_update_recipes_packet::ClientboundUpdateRecipesPacket, 0x67: clientbound_update_tags_packet::ClientboundUpdateTagsPacket } |
