mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-05-03 08:03:50 +00:00
Fix Warden response packet write method
This commit is contained in:
parent
31d0be9d63
commit
fceca74caa
1 changed files with 1 additions and 1 deletions
|
|
@ -1900,7 +1900,7 @@ void GameHandler::handleWardenData(network::Packet& packet) {
|
||||||
|
|
||||||
// Build and send response
|
// Build and send response
|
||||||
for (uint8_t byte : responseData) {
|
for (uint8_t byte : responseData) {
|
||||||
response.write(&byte, 1);
|
response.writeUInt8(byte);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (socket && socket->isConnected()) {
|
if (socket && socket->isConnected()) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue