mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 17:00:13 +02:00
fix call to queueEditEntityMessage
This commit is contained in:
parent
473010f634
commit
91ff851bf8
1 changed files with 1 additions and 1 deletions
|
@ -981,7 +981,7 @@ void RenderablePolyVoxEntityItem::compressVolumeDataAndSendEditPacket() {
|
||||||
PhysicalEntitySimulation* peSimulation = static_cast<PhysicalEntitySimulation*>(simulation);
|
PhysicalEntitySimulation* peSimulation = static_cast<PhysicalEntitySimulation*>(simulation);
|
||||||
EntityEditPacketSender* packetSender = peSimulation ? peSimulation->getPacketSender() : nullptr;
|
EntityEditPacketSender* packetSender = peSimulation ? peSimulation->getPacketSender() : nullptr;
|
||||||
if (packetSender) {
|
if (packetSender) {
|
||||||
packetSender->queueEditEntityMessage(PacketType::EntityEdit, entity->getID(), properties);
|
packetSender->queueEditEntityMessage(PacketType::EntityEdit, tree, entity->getID(), properties);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue