From 5dd35c7ed82c38ef36ca28f630e8d05c5db2cbea Mon Sep 17 00:00:00 2001 From: mat <27899617+mat-1@users.noreply.github.com> Date: Tue, 7 Mar 2023 22:09:56 -0600 Subject: Add World::find_block (#80) * start adding World::find_block * keep working on find_block * BlockStates * fix sorting * update examples that use find_one_block * azalea_block::properties * fix tests * add a gotoblock command to testbot --- .../src/packets/game/clientbound_chunks_biomes_packet.rs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 azalea-protocol/src/packets/game/clientbound_chunks_biomes_packet.rs (limited to 'azalea-protocol/src') diff --git a/azalea-protocol/src/packets/game/clientbound_chunks_biomes_packet.rs b/azalea-protocol/src/packets/game/clientbound_chunks_biomes_packet.rs new file mode 100644 index 00000000..9ad242a4 --- /dev/null +++ b/azalea-protocol/src/packets/game/clientbound_chunks_biomes_packet.rs @@ -0,0 +1,7 @@ +use azalea_protocol_macros::ClientboundGamePacket; +use azalea_buf::McBuf; + +#[derive(Clone, Debug, McBuf, ClientboundGamePacket)] +pub struct ClientboundChunksBiomesPacket { +pub chunk_biome_data: todo!(), +} \ No newline at end of file -- cgit v1.2.3