diff options
| -rw-r--r-- | azalea-client/src/client.rs | 5 |
1 files changed, 5 insertions, 0 deletions
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?; } } }; |
