aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/mod.rs
diff options
context:
space:
mode:
authormat <github@matdoes.dev>2022-04-24 23:02:21 -0500
committermat <github@matdoes.dev>2022-04-24 23:02:21 -0500
commite4e8cae0e3c5e8048a409c56be6faf8545e2283d (patch)
tree04956beca8f08a24949c6d941a6488b9023e1581 /azalea-protocol/src/packets/game/mod.rs
parentd6f0449344b22fab40bf5ed66159ae286f2e0826 (diff)
downloadazalea-drasl-e4e8cae0e3c5e8048a409c56be6faf8545e2283d.tar.xz
start adding update recipes 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 dde3f753..986a7010 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_login_packet;
pub mod clientbound_player_abilities_packet;
pub mod clientbound_set_carried_item_packet;
+pub mod clientbound_update_recipes_packet;
pub mod clientbound_update_tags_packet;
pub mod clientbound_update_view_distance_packet;
@@ -22,6 +23,7 @@ declare_state_packets!(
0x32: clientbound_player_abilities_packet::ClientboundPlayerAbilitiesPacket,
0x48: clientbound_set_carried_item_packet::ClientboundSetCarriedItemPacket,
0x4a: clientbound_update_view_distance_packet::ClientboundUpdateViewDistancePacket,
+ 0x66: clientbound_update_recipes_packet::ClientboundUpdateRecipesPacket,
0x67: clientbound_update_tags_packet::ClientboundUpdateTagsPacket
}
);