aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/mod.rs
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-04-30 22:13:47 -0500
committermat <github@matdoes.dev>2022-04-30 22:13:47 -0500
commitf2a8e8221d9de6e76721d3c947ba9f1ab7c3c90d (patch)
treeac975f5b640039a63a27dfe5ec58f944833894f0 /azalea-protocol/src/packets/game/mod.rs
parent80d49a76073d417e118b85636df2a923043b0250 (diff)
downloadazalea-drasl-f2a8e8221d9de6e76721d3c947ba9f1ab7c3c90d.tar.xz
add clientbound_add_entity_packet
Diffstat (limited to 'azalea-protocol/src/packets/game/mod.rs')
-rwxr-xr-xazalea-protocol/src/packets/game/mod.rs2
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 d957627e..9cde366c 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_change_difficulty_packet;
pub mod clientbound_custom_payload_packet;
pub mod clientbound_declare_commands_packet;
@@ -22,6 +23,7 @@ declare_state_packets!(
GamePacket,
Serverbound => {},
Clientbound => {
+ 0x02: clientbound_add_entity_packet::ClientboundAddEntityPacket,
0x0e: clientbound_change_difficulty_packet::ClientboundChangeDifficultyPacket,
0x12: clientbound_declare_commands_packet::ClientboundDeclareCommandsPacket,
0x1a: clientbound_disconnect_packet::ClientboundDisconnectPacket,