diff options
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.Inventory.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index cadb858..1875c48 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -132,7 +132,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
132 | { | 132 | { |
133 | ScenePresence avatar; | 133 | ScenePresence avatar; |
134 | 134 | ||
135 | if (TryGetAvatar(avatarId, out avatar)) | 135 | if (TryGetScenePresence(avatarId, out avatar)) |
136 | { | 136 | { |
137 | IInventoryAccessModule invAccess = RequestModuleInterface<IInventoryAccessModule>(); | 137 | IInventoryAccessModule invAccess = RequestModuleInterface<IInventoryAccessModule>(); |
138 | if (invAccess != null) | 138 | if (invAccess != null) |
@@ -230,7 +230,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
230 | { | 230 | { |
231 | ScenePresence avatar; | 231 | ScenePresence avatar; |
232 | 232 | ||
233 | if (TryGetAvatar(avatarId, out avatar)) | 233 | if (TryGetScenePresence(avatarId, out avatar)) |
234 | { | 234 | { |
235 | return CapsUpdateTaskInventoryScriptAsset( | 235 | return CapsUpdateTaskInventoryScriptAsset( |
236 | avatar.ControllingClient, itemId, primId, isScriptRunning, data); | 236 | avatar.ControllingClient, itemId, primId, isScriptRunning, data); |
@@ -683,7 +683,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
683 | if (transactionID == UUID.Zero) | 683 | if (transactionID == UUID.Zero) |
684 | { | 684 | { |
685 | ScenePresence presence; | 685 | ScenePresence presence; |
686 | if (TryGetAvatar(remoteClient.AgentId, out presence)) | 686 | if (TryGetScenePresence(remoteClient.AgentId, out presence)) |
687 | { | 687 | { |
688 | byte[] data = null; | 688 | byte[] data = null; |
689 | 689 | ||
@@ -945,7 +945,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
945 | { | 945 | { |
946 | ScenePresence avatar; | 946 | ScenePresence avatar; |
947 | 947 | ||
948 | if (TryGetAvatar(avatarId, out avatar)) | 948 | if (TryGetScenePresence(avatarId, out avatar)) |
949 | { | 949 | { |
950 | return MoveTaskInventoryItem(avatar.ControllingClient, folderId, part, itemId); | 950 | return MoveTaskInventoryItem(avatar.ControllingClient, folderId, part, itemId); |
951 | } | 951 | } |
@@ -1059,7 +1059,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1059 | 1059 | ||
1060 | ScenePresence avatar; | 1060 | ScenePresence avatar; |
1061 | 1061 | ||
1062 | if (TryGetAvatar(srcTaskItem.OwnerID, out avatar)) | 1062 | if (TryGetScenePresence(srcTaskItem.OwnerID, out avatar)) |
1063 | { | 1063 | { |
1064 | destPart.GetProperties(avatar.ControllingClient); | 1064 | destPart.GetProperties(avatar.ControllingClient); |
1065 | } | 1065 | } |
@@ -1087,7 +1087,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1087 | } | 1087 | } |
1088 | 1088 | ||
1089 | ScenePresence avatar = null; | 1089 | ScenePresence avatar = null; |
1090 | if (TryGetAvatar(destID, out avatar)) | 1090 | if (TryGetScenePresence(destID, out avatar)) |
1091 | { | 1091 | { |
1092 | //profile.SendInventoryDecendents(avatar.ControllingClient, | 1092 | //profile.SendInventoryDecendents(avatar.ControllingClient, |
1093 | // profile.RootFolder.ID, true, false); | 1093 | // profile.RootFolder.ID, true, false); |
@@ -1424,7 +1424,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1424 | 1424 | ||
1425 | ScenePresence avatar; | 1425 | ScenePresence avatar; |
1426 | 1426 | ||
1427 | if (TryGetAvatar(srcTaskItem.OwnerID, out avatar)) | 1427 | if (TryGetScenePresence(srcTaskItem.OwnerID, out avatar)) |
1428 | { | 1428 | { |
1429 | destPart.GetProperties(avatar.ControllingClient); | 1429 | destPart.GetProperties(avatar.ControllingClient); |
1430 | } | 1430 | } |
@@ -1865,7 +1865,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1865 | UUID inventoryID = part.ParentGroup.GetFromItemID(); | 1865 | UUID inventoryID = part.ParentGroup.GetFromItemID(); |
1866 | 1866 | ||
1867 | ScenePresence presence; | 1867 | ScenePresence presence; |
1868 | if (TryGetAvatar(remoteClient.AgentId, out presence)) | 1868 | if (TryGetScenePresence(remoteClient.AgentId, out presence)) |
1869 | { | 1869 | { |
1870 | if (!Permissions.CanRezObject(part.ParentGroup.Children.Count, remoteClient.AgentId, presence.AbsolutePosition)) | 1870 | if (!Permissions.CanRezObject(part.ParentGroup.Children.Count, remoteClient.AgentId, presence.AbsolutePosition)) |
1871 | return; | 1871 | return; |