aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework
diff options
context:
space:
mode:
authorMandarinka Tasty2016-12-04 07:10:13 +0100
committerUbitUmarov2016-12-04 17:18:56 +0000
commit7c566dca5a41cd3a9cb0336b00bdf7d63e24d2e9 (patch)
treeb065a6dc4641b3d0ff1b805fdcb76bd4a2248518 /OpenSim/Region/CoreModules/Framework
parenta few changes to new GetDisplaynames and friends (diff)
downloadopensim-SC_OLD-7c566dca5a41cd3a9cb0336b00bdf7d63e24d2e9.zip
opensim-SC_OLD-7c566dca5a41cd3a9cb0336b00bdf7d63e24d2e9.tar.gz
opensim-SC_OLD-7c566dca5a41cd3a9cb0336b00bdf7d63e24d2e9.tar.bz2
opensim-SC_OLD-7c566dca5a41cd3a9cb0336b00bdf7d63e24d2e9.tar.xz
The new Constant: integer OBJECT_REZZER_KEY = 32;
Signed-off-by: Mandarinka Tasty <mandarinka.tasty@gmail.com> Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
Diffstat (limited to 'OpenSim/Region/CoreModules/Framework')
-rw-r--r--OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs2
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