1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-16 18:19:55 +00:00

[Client] Only send ObjectScale packets when scale actually changes

This commit is contained in:
David Cernat 2018-01-28 05:58:56 +02:00
parent 613adf6b30
commit 595bc5a152

View file

@ -60,8 +60,9 @@ namespace MWScript
Send an ID_OBJECT_SCALE every time an object's scale is changed
through a script
*/
if (ptr.isInCell())
if (ptr.isInCell() && (ptr.getCellRef().getScale() != scale))
{
mwmp::WorldEvent *worldEvent = mwmp::Main::get().getNetworking()->getWorldEvent();
worldEvent->reset();
worldEvent->addObjectScale(ptr, scale);