From 261913e606d7b8bdc96a51f41f23766f87ad9568 Mon Sep 17 00:00:00 2001 From: mat Date: Sun, 30 Oct 2022 21:42:32 -0500 Subject: [PATCH] reply to custom query packet --- azalea-client/src/client.rs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/azalea-client/src/client.rs b/azalea-client/src/client.rs index cb87c250..4ed2be2c 100644 --- a/azalea-client/src/client.rs +++ b/azalea-client/src/client.rs @@ -226,6 +226,11 @@ impl Client { } ClientboundLoginPacket::CustomQuery(p) => { debug!("Got custom query {:?}", p); + conn.write(ServerboundCustomQueryPacket { + transaction_id: p.transaction_id, + data: None, + }) + .await?; } } };