aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src')
-rwxr-xr-xazalea-protocol/src/packets/game/c_level_chunk_with_light.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/azalea-protocol/src/packets/game/c_level_chunk_with_light.rs b/azalea-protocol/src/packets/game/c_level_chunk_with_light.rs
index 43237c3b..c27c24a9 100755
--- a/azalea-protocol/src/packets/game/c_level_chunk_with_light.rs
+++ b/azalea-protocol/src/packets/game/c_level_chunk_with_light.rs
@@ -25,7 +25,7 @@ pub struct ClientboundLevelChunkPacketData {
///
/// This is an Arc because it's often very big and we want it to be cheap to
/// clone.
- pub data: Arc<Vec<u8>>,
+ pub data: Arc<Box<[u8]>>,
pub block_entities: Vec<BlockEntity>,
}