From a92266d58e36282ccbccccea7ba5148fa4095377 Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Sun, 10 Jul 2016 19:05:19 +0100 Subject: [PATCH] fix ObjectPropertiesFamilyPacket LastOwnerID --- OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs index 383031c729..a84d9028c7 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLClientView.cs @@ -4796,7 +4796,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP block.SaleType = sop.ObjectSaleType; block.SalePrice = sop.SalePrice; block.Category = sop.Category; - block.LastOwnerID = sop.CreatorID; // copied from old SOG call... is this right? + block.LastOwnerID = sop.LastOwnerID; block.Name = Util.StringToBytes256(sop.Name); block.Description = Util.StringToBytes256(sop.Description);