mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-29 16:11:37 -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
|
||||
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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user