mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
clientbound_set_entity_link_packet
This commit is contained in:
parent
366904e419
commit
c2262a2123
4 changed files with 13 additions and 7 deletions
|
@ -252,6 +252,9 @@ impl Client {
|
||||||
GamePacket::ClientboundEntityVelocityPacket(p) => {
|
GamePacket::ClientboundEntityVelocityPacket(p) => {
|
||||||
println!("Got entity velocity packet {:?}", p);
|
println!("Got entity velocity packet {:?}", p);
|
||||||
}
|
}
|
||||||
|
GamePacket::ClientboundSetEntityLinkPacket(p) => {
|
||||||
|
println!("Got set entity link packet {:?}", p);
|
||||||
|
}
|
||||||
_ => panic!("Unexpected packet {:?}", packet),
|
_ => panic!("Unexpected packet {:?}", packet),
|
||||||
}
|
}
|
||||||
println!();
|
println!();
|
||||||
|
|
|
@ -1,10 +1,4 @@
|
||||||
use async_trait::async_trait;
|
use packet_macros::GamePacket;
|
||||||
use azalea_chat::component::Component;
|
|
||||||
use azalea_core::{resource_location::ResourceLocation, Slot};
|
|
||||||
use packet_macros::{GamePacket, McBufReadable, McBufWritable};
|
|
||||||
use tokio::io::AsyncRead;
|
|
||||||
|
|
||||||
use crate::mc_buf::{McBufReadable, McBufWritable, Readable, Writable};
|
|
||||||
|
|
||||||
#[derive(Clone, Debug, GamePacket)]
|
#[derive(Clone, Debug, GamePacket)]
|
||||||
pub struct ClientboundEntityVelocityPacket {
|
pub struct ClientboundEntityVelocityPacket {
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
use packet_macros::GamePacket;
|
||||||
|
|
||||||
|
#[derive(Clone, Debug, GamePacket)]
|
||||||
|
pub struct ClientboundSetEntityLinkPacket {
|
||||||
|
pub source_id: u32,
|
||||||
|
pub dest_id: u32,
|
||||||
|
}
|
|
@ -16,6 +16,7 @@ pub mod clientbound_recipe_packet;
|
||||||
pub mod clientbound_set_carried_item_packet;
|
pub mod clientbound_set_carried_item_packet;
|
||||||
pub mod clientbound_set_chunk_cache_center;
|
pub mod clientbound_set_chunk_cache_center;
|
||||||
pub mod clientbound_set_entity_data_packet;
|
pub mod clientbound_set_entity_data_packet;
|
||||||
|
pub mod clientbound_set_entity_link_packet;
|
||||||
pub mod clientbound_update_attributes_packet;
|
pub mod clientbound_update_attributes_packet;
|
||||||
pub mod clientbound_update_recipes_packet;
|
pub mod clientbound_update_recipes_packet;
|
||||||
pub mod clientbound_update_tags_packet;
|
pub mod clientbound_update_tags_packet;
|
||||||
|
@ -48,6 +49,7 @@ declare_state_packets!(
|
||||||
0x49: clientbound_set_chunk_cache_center::ClientboundSetChunkCacheCenterPacket,
|
0x49: clientbound_set_chunk_cache_center::ClientboundSetChunkCacheCenterPacket,
|
||||||
0x4a: clientbound_update_view_distance_packet::ClientboundUpdateViewDistancePacket,
|
0x4a: clientbound_update_view_distance_packet::ClientboundUpdateViewDistancePacket,
|
||||||
0x4d: clientbound_set_entity_data_packet::ClientboundSetEntityDataPacket,
|
0x4d: clientbound_set_entity_data_packet::ClientboundSetEntityDataPacket,
|
||||||
|
0x45: clientbound_set_entity_link_packet::ClientboundSetEntityLinkPacket,
|
||||||
0x4f: clientbound_entity_velocity_packet::ClientboundEntityVelocityPacket,
|
0x4f: clientbound_entity_velocity_packet::ClientboundEntityVelocityPacket,
|
||||||
0x64: clientbound_update_attributes_packet::ClientboundUpdateAttributesPacket,
|
0x64: clientbound_update_attributes_packet::ClientboundUpdateAttributesPacket,
|
||||||
0x66: clientbound_update_recipes_packet::ClientboundUpdateRecipesPacket,
|
0x66: clientbound_update_recipes_packet::ClientboundUpdateRecipesPacket,
|
||||||
|
|
Loading…
Add table
Reference in a new issue