diff options
| author | mat <github@matdoes.dev> | 2022-05-01 13:51:59 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-05-01 13:51:59 -0500 |
| commit | 9dacd90abcfaa62ade1e4f130ed53da2c9facdbc (patch) | |
| tree | 68a4956399a6d509a5d8ae790235996a5a24024e /azalea-protocol/src/packets/game/mod.rs | |
| parent | 4b1cfd1cf899fbbc3de8f72cbb160695c1e9ae70 (diff) | |
| download | azalea-drasl-9dacd90abcfaa62ade1e4f130ed53da2c9facdbc.tar.xz | |
clientbound_add_entity_packet & clientbound_set_entity_data_packet
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 aac1a9a0..e27255ac 100755 --- a/azalea-protocol/src/packets/game/mod.rs +++ b/azalea-protocol/src/packets/game/mod.rs @@ -1,3 +1,4 @@ +pub mod clientbound_add_entity_packet; pub mod clientbound_add_mob_packet; pub mod clientbound_change_difficulty_packet; pub mod clientbound_custom_payload_packet; @@ -13,6 +14,7 @@ pub mod clientbound_player_position_packet; 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_recipes_packet; pub mod clientbound_update_tags_packet; pub mod clientbound_update_view_distance_packet; @@ -26,6 +28,7 @@ declare_state_packets!( 0x0a: serverbound_custom_payload_packet::ServerboundCustomPayloadPacket, }, Clientbound => { + 0x00: clientbound_add_entity_packet::ClientboundAddEntityPacket, 0x02: clientbound_add_mob_packet::ClientboundAddMobPacket, 0x0e: clientbound_change_difficulty_packet::ClientboundChangeDifficultyPacket, 0x12: clientbound_declare_commands_packet::ClientboundDeclareCommandsPacket, @@ -42,6 +45,7 @@ declare_state_packets!( 0x48: clientbound_set_carried_item_packet::ClientboundSetCarriedItemPacket, 0x49: clientbound_set_chunk_cache_center::ClientboundSetChunkCacheCenterPacket, 0x4a: clientbound_update_view_distance_packet::ClientboundUpdateViewDistancePacket, + 0x4d: clientbound_set_entity_data_packet::ClientboundSetEntityDataPacket, 0x66: clientbound_update_recipes_packet::ClientboundUpdateRecipesPacket, 0x67: clientbound_update_tags_packet::ClientboundUpdateTagsPacket } |
