mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 14:03:55 +02:00
Merge pull request #675 from birarda/high-agent-IDs
fix the high node IDs in avatar mixer
This commit is contained in:
commit
ca06af779b
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ int main(int argc, const char* argv[]) {
|
|||
switch (packetData[0]) {
|
||||
case PACKET_TYPE_HEAD_DATA:
|
||||
// grab the node ID from the packet
|
||||
unpackNodeId(packetData + 1, &nodeID);
|
||||
unpackNodeId(packetData + numBytesForPacketHeader(packetData), &nodeID);
|
||||
|
||||
// add or update the node in our list
|
||||
avatarNode = nodeList->addOrUpdateNode(nodeAddress, nodeAddress, NODE_TYPE_AGENT, nodeID);
|
||||
|
|
Loading…
Reference in a new issue