diff options
author | Charles Krinke | 2008-06-25 01:24:00 +0000 |
---|---|---|
committer | Charles Krinke | 2008-06-25 01:24:00 +0000 |
commit | c7edabd2d39dc65119bc20882d6cc660b39ded1a (patch) | |
tree | 3d349e48c4b4858df189dc4cbb826da5917b5070 /OpenSim/Region/ScriptEngine/Common | |
parent | Mantis#1587. Thank you kindly, Melanie for a patch that: (diff) | |
download | opensim-SC_OLD-c7edabd2d39dc65119bc20882d6cc660b39ded1a.zip opensim-SC_OLD-c7edabd2d39dc65119bc20882d6cc660b39ded1a.tar.gz opensim-SC_OLD-c7edabd2d39dc65119bc20882d6cc660b39ded1a.tar.bz2 opensim-SC_OLD-c7edabd2d39dc65119bc20882d6cc660b39ded1a.tar.xz |
Mantis#1590. Thank you kindly, Melanie for a patch that:
Makes items appear in the item type folder, rather than in the root
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Common')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index 6d40dff..08cf4a7 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -2722,9 +2722,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2722 | if (World.GetScenePresence(destId) != null) | 2722 | if (World.GetScenePresence(destId) != null) |
2723 | { | 2723 | { |
2724 | // destination is an avatar | 2724 | // destination is an avatar |
2725 | CachedUserInfo userInfo = | 2725 | World.MoveTaskInventoryItem(destId, null, m_host, objId); |
2726 | World.CommsManager.UserProfileCacheService.GetUserDetails(destId); | ||
2727 | World.MoveTaskInventoryItem(destId,userInfo.RootFolder.ID, m_host, objId); | ||
2728 | } | 2726 | } |
2729 | else | 2727 | else |
2730 | { | 2728 | { |