diff options
author | Diva Canto | 2011-05-27 08:19:40 -0700 |
---|---|---|
committer | Diva Canto | 2011-05-27 08:19:40 -0700 |
commit | d60f525baa8697f896b9f756175118828db9ac78 (patch) | |
tree | 7d38e8a8e578f84261ffb42adad7daf09a983ed4 /OpenSim/Services/HypergridService | |
parent | Added a BasicProfilemodule so that the profile-based actions (like give inven... (diff) | |
download | opensim-SC_OLD-d60f525baa8697f896b9f756175118828db9ac78.zip opensim-SC_OLD-d60f525baa8697f896b9f756175118828db9ac78.tar.gz opensim-SC_OLD-d60f525baa8697f896b9f756175118828db9ac78.tar.bz2 opensim-SC_OLD-d60f525baa8697f896b9f756175118828db9ac78.tar.xz |
HG inventory transfers over the profile working.
Diffstat (limited to 'OpenSim/Services/HypergridService')
-rw-r--r-- | OpenSim/Services/HypergridService/HGInventoryService.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/OpenSim/Services/HypergridService/HGInventoryService.cs b/OpenSim/Services/HypergridService/HGInventoryService.cs index 9ee1ae4..4eb61ba 100644 --- a/OpenSim/Services/HypergridService/HGInventoryService.cs +++ b/OpenSim/Services/HypergridService/HGInventoryService.cs | |||
@@ -134,6 +134,7 @@ namespace OpenSim.Services.HypergridService | |||
134 | 134 | ||
135 | public override InventoryFolderBase GetRootFolder(UUID principalID) | 135 | public override InventoryFolderBase GetRootFolder(UUID principalID) |
136 | { | 136 | { |
137 | //m_log.DebugFormat("[HG INVENTORY SERVICE]: GetRootFolder for {0}", principalID); | ||
137 | // Warp! Root folder for travelers | 138 | // Warp! Root folder for travelers |
138 | XInventoryFolder[] folders = m_Database.GetFolders( | 139 | XInventoryFolder[] folders = m_Database.GetFolders( |
139 | new string[] { "agentID", "folderName"}, | 140 | new string[] { "agentID", "folderName"}, |
@@ -171,6 +172,7 @@ namespace OpenSim.Services.HypergridService | |||
171 | 172 | ||
172 | public override InventoryFolderBase GetFolderForType(UUID principalID, AssetType type) | 173 | public override InventoryFolderBase GetFolderForType(UUID principalID, AssetType type) |
173 | { | 174 | { |
175 | //m_log.DebugFormat("[HG INVENTORY SERVICE]: GetFolderForType for {0} {0}", principalID, type); | ||
174 | return GetRootFolder(principalID); | 176 | return GetRootFolder(principalID); |
175 | } | 177 | } |
176 | 178 | ||