mirror of
https://github.com/overte-org/overte.git
synced 2025-04-21 09:44:21 +02:00
correct use of member variables for DS check in
This commit is contained in:
parent
a0226b2548
commit
66a998e752
1 changed files with 1 additions and 1 deletions
|
@ -277,7 +277,7 @@ void NodeList::sendDomainServerCheckIn() {
|
|||
_checkInPacketSize = packetPosition - _checkInPacket;
|
||||
}
|
||||
|
||||
_nodeSocket.send(DOMAIN_IP, DOMAINSERVER_PORT, checkInPacket, checkInPacketSize);
|
||||
_nodeSocket.send(DOMAIN_IP, DOMAINSERVER_PORT, _checkInPacket, _checkInPacketSize);
|
||||
}
|
||||
|
||||
int NodeList::processDomainServerList(unsigned char* packetData, size_t dataBytes) {
|
||||
|
|
Loading…
Reference in a new issue