aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
diff options
context:
space:
mode:
authorUbitUmarov2012-03-11 00:53:53 +0000
committerUbitUmarov2012-03-11 00:53:53 +0000
commite4e6f781a61b1b7a7462a39e28e0a85f0fabaab5 (patch)
tree04f25af9832347f1a88890f9d8067f6f0e2155c9 /OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
parent Changed undo redo internals. moved exec code to UndoState.cs from sop that n... (diff)
parentMerge branch 'master' into careminster (diff)
downloadopensim-SC_OLD-e4e6f781a61b1b7a7462a39e28e0a85f0fabaab5.zip
opensim-SC_OLD-e4e6f781a61b1b7a7462a39e28e0a85f0fabaab5.tar.gz
opensim-SC_OLD-e4e6f781a61b1b7a7462a39e28e0a85f0fabaab5.tar.bz2
opensim-SC_OLD-e4e6f781a61b1b7a7462a39e28e0a85f0fabaab5.tar.xz
Merge branch 'master' of ssh://3dhosting.de/var/git/careminster into ubitwork
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/Scene.Inventory.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.Inventory.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
index 719c300..d1739de 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.Inventory.cs
@@ -616,7 +616,7 @@ namespace OpenSim.Region.Framework.Scenes
616 { 616 {
617 IInventoryAccessModule invAccess = RequestModuleInterface<IInventoryAccessModule>(); 617 IInventoryAccessModule invAccess = RequestModuleInterface<IInventoryAccessModule>();
618 if (invAccess != null) 618 if (invAccess != null)
619 invAccess.TransferInventoryAssets(itemCopy, senderId, recipient); 619 Util.FireAndForget(delegate { invAccess.TransferInventoryAssets(itemCopy, senderId, recipient); });
620 } 620 }
621 621
622 if (!Permissions.BypassPermissions()) 622 if (!Permissions.BypassPermissions())