mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-10-01 00:50:15 -04:00
[Client] Only send ObjectScale packets when scale actually changes
This commit is contained in:
parent
613adf6b30
commit
595bc5a152
@ -60,8 +60,9 @@ namespace MWScript
|
|||||||
Send an ID_OBJECT_SCALE every time an object's scale is changed
|
Send an ID_OBJECT_SCALE every time an object's scale is changed
|
||||||
through a script
|
through a script
|
||||||
*/
|
*/
|
||||||
if (ptr.isInCell())
|
if (ptr.isInCell() && (ptr.getCellRef().getScale() != scale))
|
||||||
{
|
{
|
||||||
|
|
||||||
mwmp::WorldEvent *worldEvent = mwmp::Main::get().getNetworking()->getWorldEvent();
|
mwmp::WorldEvent *worldEvent = mwmp::Main::get().getNetworking()->getWorldEvent();
|
||||||
worldEvent->reset();
|
worldEvent->reset();
|
||||||
worldEvent->addObjectScale(ptr, scale);
|
worldEvent->addObjectScale(ptr, scale);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user