From 6a5ab34a2db56c22e1051dfaabf98322c50f53bd Mon Sep 17 00:00:00 2001 From: mat Date: Sun, 23 Feb 2025 17:39:17 +0000 Subject: azalea-language now does a binary search instead of a hashmap lookup --- azalea-protocol/src/packets/game/c_level_chunk_with_light.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'azalea-protocol/src/packets') 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>, + pub data: Arc>, pub block_entities: Vec, } -- cgit v1.2.3