diff options
| author | mat <github@matdoes.dev> | 2022-06-24 23:54:31 -0500 |
|---|---|---|
| committer | mat <github@matdoes.dev> | 2022-06-24 23:54:31 -0500 |
| commit | 41f61bf9c11ab58af4c1bd97c2cb40110b272449 (patch) | |
| tree | 3784907c2c18ce9881907a9e2603218d26fcf973 /azalea-protocol/src/packets/game/mod.rs | |
| parent | b030b0ea330c674415f7e30634957167b2fa6a6d (diff) | |
| download | azalea-drasl-41f61bf9c11ab58af4c1bd97c2cb40110b272449.tar.xz | |
i hate mutexes
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 d3d6650c..3e492dec 100755 --- a/azalea-protocol/src/packets/game/mod.rs +++ b/azalea-protocol/src/packets/game/mod.rs @@ -49,6 +49,7 @@ 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; +pub mod serverbound_accept_teleportation_packet; pub mod serverbound_chat_command_packet; pub mod serverbound_chat_preview_packet; pub mod serverbound_custom_payload_packet; @@ -63,6 +64,7 @@ use packet_macros::declare_state_packets; declare_state_packets!( GamePacket, Serverbound => { + 0x00: serverbound_accept_teleportation_packet::ServerboundAcceptTeleportationPacket, 0x03: serverbound_chat_command_packet::ServerboundChatCommandPacket, 0x05: serverbound_chat_preview_packet::ServerboundChatPreviewPacket, 0x0c: serverbound_custom_payload_packet::ServerboundCustomPayloadPacket, |
