diff options
author | UbitUmarov | 2012-03-11 00:53:53 +0000 |
---|---|---|
committer | UbitUmarov | 2012-03-11 00:53:53 +0000 |
commit | e4e6f781a61b1b7a7462a39e28e0a85f0fabaab5 (patch) | |
tree | 04f25af9832347f1a88890f9d8067f6f0e2155c9 /OpenSim/Region/Framework/Scenes | |
parent | Changed undo redo internals. moved exec code to UndoState.cs from sop that n... (diff) | |
parent | Merge branch 'master' into careminster (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Region/Framework/Scenes/Scene.Inventory.cs | 2 |
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()) |