1
2
Fork 0
mirror of https://github.com/mat-1/azalea.git synced 2025-08-02 06:16:04 +00:00

reply to custom query packet

This commit is contained in:
mat 2022-10-30 21:42:32 -05:00
parent 5ae890f941
commit 261913e606

View file

@ -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?;
}
}
};