mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
make some fields public in light update packet
This commit is contained in:
parent
350f9f105e
commit
c4843b347d
1 changed files with 7 additions and 7 deletions
|
@ -13,11 +13,11 @@ pub struct ClientboundLightUpdatePacket {
|
||||||
|
|
||||||
#[derive(Clone, Debug, McBuf)]
|
#[derive(Clone, Debug, McBuf)]
|
||||||
pub struct ClientboundLightUpdatePacketData {
|
pub struct ClientboundLightUpdatePacketData {
|
||||||
trust_edges: bool,
|
pub trust_edges: bool,
|
||||||
sky_y_mask: BitSet,
|
pub sky_y_mask: BitSet,
|
||||||
block_y_mask: BitSet,
|
pub block_y_mask: BitSet,
|
||||||
empty_sky_y_mask: BitSet,
|
pub empty_sky_y_mask: BitSet,
|
||||||
empty_block_y_mask: BitSet,
|
pub empty_block_y_mask: BitSet,
|
||||||
sky_updates: Vec<Vec<u8>>,
|
pub sky_updates: Vec<Vec<u8>>,
|
||||||
block_updates: Vec<Vec<u8>>,
|
pub block_updates: Vec<Vec<u8>>,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue