Core/Packets: send the full packet data for action bars in SMSG_UPDATE_OBJECT

This commit is contained in:
Ovahlord
2024-11-16 00:35:12 +01:00
parent c47a988eb2
commit 70e87f99b2

View File

@@ -801,7 +801,7 @@ void Object::BuildMovementUpdate(ByteBuffer* data, CreateObjectBits flags, Playe
{
auto const& itr = actionButtonList.find(i);
if (itr != actionButtonList.end() && itr->second.uState != ACTIONBUTTON_DELETED)
*data << uint32(itr->second.GetAction());
*data << uint32(itr->second.packedData);
else
*data << uint32(0);
}