mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 14:03:55 +02:00
fix octreePacketSent call with const NLPacket&
This commit is contained in:
parent
c903d284bb
commit
7e07754773
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ public:
|
|||
void forceNodeShutdown();
|
||||
bool isShuttingDown() const { return _isShuttingDown; }
|
||||
|
||||
void octreePacketSent() { packetSent(_octreePacket); }
|
||||
void octreePacketSent() { packetSent(*_octreePacket.get()); }
|
||||
void packetSent(const NLPacket& packet);
|
||||
|
||||
OCTREE_PACKET_SEQUENCE getSequenceNumber() const { return _sequenceNumber; }
|
||||
|
|
Loading…
Reference in a new issue