mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
protocol fixes
This commit is contained in:
parent
c04620ec38
commit
657c073eab
2 changed files with 5 additions and 5 deletions
|
@ -13,7 +13,6 @@ pub struct ClientboundLightUpdatePacket {
|
|||
|
||||
#[derive(Clone, Debug, McBuf)]
|
||||
pub struct ClientboundLightUpdatePacketData {
|
||||
pub trust_edges: bool,
|
||||
pub sky_y_mask: BitSet,
|
||||
pub block_y_mask: BitSet,
|
||||
pub empty_sky_y_mask: BitSet,
|
||||
|
|
|
@ -16,10 +16,11 @@ pub struct ClientboundUpdateAdvancementsPacket {
|
|||
|
||||
#[derive(Clone, Debug, McBuf)]
|
||||
pub struct Advancement {
|
||||
parent_id: Option<ResourceLocation>,
|
||||
display: Option<DisplayInfo>,
|
||||
criteria: HashMap<ResourceLocation, Criterion>,
|
||||
requirements: Vec<Vec<String>>,
|
||||
pub parent_id: Option<ResourceLocation>,
|
||||
pub display: Option<DisplayInfo>,
|
||||
pub criteria: HashMap<ResourceLocation, Criterion>,
|
||||
pub requirements: Vec<Vec<String>>,
|
||||
pub sends_telemetry_event: bool,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug)]
|
||||
|
|
Loading…
Add table
Reference in a new issue