aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/clientbound_chunks_biomes_packet.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/clientbound_chunks_biomes_packet.rs')
-rw-r--r--azalea-protocol/src/packets/game/clientbound_chunks_biomes_packet.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/azalea-protocol/src/packets/game/clientbound_chunks_biomes_packet.rs b/azalea-protocol/src/packets/game/clientbound_chunks_biomes_packet.rs
deleted file mode 100644
index 7c8f2154..00000000
--- a/azalea-protocol/src/packets/game/clientbound_chunks_biomes_packet.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-use azalea_buf::McBuf;
-use azalea_core::position::ChunkPos;
-use azalea_protocol_macros::ClientboundGamePacket;
-
-#[derive(Clone, Debug, McBuf, ClientboundGamePacket)]
-pub struct ClientboundChunksBiomesPacket {
- pub chunk_biome_data: Vec<ChunkBiomeData>,
-}
-
-#[derive(Clone, Debug, McBuf)]
-pub struct ChunkBiomeData {
- pub pos: ChunkPos,
- pub buffer: Vec<u8>,
-}