diff options
Diffstat (limited to 'OpenSim/Region/CoreModules/Framework')
-rw-r--r-- | OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs b/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs index fa7803f..771e5fe 100644 --- a/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs +++ b/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs | |||
@@ -981,6 +981,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess | |||
981 | // Make the rezzer the owner, as this is not necessarily set correctly in the serialized asset. | 981 | // Make the rezzer the owner, as this is not necessarily set correctly in the serialized asset. |
982 | part.LastOwnerID = part.OwnerID; | 982 | part.LastOwnerID = part.OwnerID; |
983 | part.OwnerID = remoteClient.AgentId; | 983 | part.OwnerID = remoteClient.AgentId; |
984 | part.RezzerID = remoteClient.AgentId; | ||
984 | } | 985 | } |
985 | } | 986 | } |
986 | 987 | ||
@@ -1150,6 +1151,7 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess | |||
1150 | 1151 | ||
1151 | part.LastOwnerID = part.OwnerID; | 1152 | part.LastOwnerID = part.OwnerID; |
1152 | part.OwnerID = item.Owner; | 1153 | part.OwnerID = item.Owner; |
1154 | part.RezzerID = item.Owner; | ||
1153 | part.Inventory.ChangeInventoryOwner(item.Owner); | 1155 | part.Inventory.ChangeInventoryOwner(item.Owner); |
1154 | } | 1156 | } |
1155 | 1157 | ||