mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01: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