aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src')
-rw-r--r--azalea-protocol/src/packets/game/clientbound_light_update_packet.rs14
1 files changed, 7 insertions, 7 deletions
diff --git a/azalea-protocol/src/packets/game/clientbound_light_update_packet.rs b/azalea-protocol/src/packets/game/clientbound_light_update_packet.rs
index b4d0d0e5..5a0478ca 100644
--- a/azalea-protocol/src/packets/game/clientbound_light_update_packet.rs
+++ b/azalea-protocol/src/packets/game/clientbound_light_update_packet.rs
@@ -13,11 +13,11 @@ pub struct ClientboundLightUpdatePacket {
#[derive(Clone, Debug, McBuf)]
pub struct ClientboundLightUpdatePacketData {
- trust_edges: bool,
- sky_y_mask: BitSet,
- block_y_mask: BitSet,
- empty_sky_y_mask: BitSet,
- empty_block_y_mask: BitSet,
- sky_updates: Vec<Vec<u8>>,
- block_updates: Vec<Vec<u8>>,
+ pub trust_edges: bool,
+ pub sky_y_mask: BitSet,
+ pub block_y_mask: BitSet,
+ pub empty_sky_y_mask: BitSet,
+ pub empty_block_y_mask: BitSet,
+ pub sky_updates: Vec<Vec<u8>>,
+ pub block_updates: Vec<Vec<u8>>,
}