aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
diff options
context:
space:
mode:
authorDan Lake2012-02-17 13:51:54 -0800
committerDan Lake2012-02-17 13:51:54 -0800
commitb313d16493b765c3981ef3d15b8919d376733df2 (patch)
treec1111d430dcf7ecbecc3fa82a01e4e9623c1b6bc /OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
parentAdded the TriggerAvatarAppearanceChanged to EventManager. It's triggered by A... (diff)
parentAdd new and updated script events (diff)
downloadopensim-SC_OLD-b313d16493b765c3981ef3d15b8919d376733df2.zip
opensim-SC_OLD-b313d16493b765c3981ef3d15b8919d376733df2.tar.gz
opensim-SC_OLD-b313d16493b765c3981ef3d15b8919d376733df2.tar.bz2
opensim-SC_OLD-b313d16493b765c3981ef3d15b8919d376733df2.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs')
-rw-r--r--OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs b/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
index 63ba3d3..d320af4 100644
--- a/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
+++ b/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
@@ -551,9 +551,14 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
551// "[INVENTORY ACCESS MODULE]: Target of {0} in CreateItemForObject() is {1} {2}", 551// "[INVENTORY ACCESS MODULE]: Target of {0} in CreateItemForObject() is {1} {2}",
552// action, remoteClient.Name, userID); 552// action, remoteClient.Name, userID);
553 } 553 }
554 else if (so.RootPart.OwnerID == so.RootPart.GroupID)
555 {
556 // Group owned objects go to the last owner before the object was transferred.
557 userID = so.RootPart.LastOwnerID;
558 }
554 else 559 else
555 { 560 {
556 // All returns / deletes go to the object owner 561 // Other returns / deletes go to the object owner
557 // 562 //
558 userID = so.RootPart.OwnerID; 563 userID = so.RootPart.OwnerID;
559 564