diff options
author | Melanie | 2010-11-23 14:05:09 +0000 |
---|---|---|
committer | Melanie | 2010-11-23 14:05:09 +0000 |
commit | 6557d5f3596e6b187131f3dec325104d79b5eef7 (patch) | |
tree | e20aea5c5e7127cf2548126c04db77ac5a43dd22 /OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |
parent | Merge branch 'master' into careminster-presence-refactor (diff) | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC-6557d5f3596e6b187131f3dec325104d79b5eef7.zip opensim-SC-6557d5f3596e6b187131f3dec325104d79b5eef7.tar.gz opensim-SC-6557d5f3596e6b187131f3dec325104d79b5eef7.tar.bz2 opensim-SC-6557d5f3596e6b187131f3dec325104d79b5eef7.tar.xz |
Merge branch 'master' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.Inventory.cs')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs index 36ce245..e6201a8 100644 --- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs +++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | |||
@@ -1738,7 +1738,12 @@ namespace OpenSim.Region.Framework.Scenes | |||
1738 | // Autoreturn has a null client. Nothing else does. So | 1738 | // Autoreturn has a null client. Nothing else does. So |
1739 | // allow only returns | 1739 | // allow only returns |
1740 | if (action != DeRezAction.Return) | 1740 | if (action != DeRezAction.Return) |
1741 | { | ||
1742 | m_log.WarnFormat( | ||
1743 | "[AGENT INVENTORY]: Ignoring attempt to {0} {1} {2} without a client", | ||
1744 | action, grp.Name, grp.UUID); | ||
1741 | return; | 1745 | return; |
1746 | } | ||
1742 | 1747 | ||
1743 | permissionToTakeCopy = false; | 1748 | permissionToTakeCopy = false; |
1744 | } | 1749 | } |
@@ -1755,7 +1760,7 @@ namespace OpenSim.Region.Framework.Scenes | |||
1755 | } | 1760 | } |
1756 | if (!Permissions.CanTakeObject(grp.UUID, remoteClient.AgentId)) | 1761 | if (!Permissions.CanTakeObject(grp.UUID, remoteClient.AgentId)) |
1757 | permissionToTake = false; | 1762 | permissionToTake = false; |
1758 | 1763 | ||
1759 | if (!Permissions.CanDeleteObject(grp.UUID, remoteClient.AgentId)) | 1764 | if (!Permissions.CanDeleteObject(grp.UUID, remoteClient.AgentId)) |
1760 | permissionToDelete = false; | 1765 | permissionToDelete = false; |
1761 | } | 1766 | } |