aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-05-03 18:51:29 +0100
committerJustin Clark-Casey (justincc)2013-05-03 18:51:29 +0100
commit7ca42d57110b5193d1a64145e3b3a5a2ada715b3 (patch)
tree8fb481024e0f045796a3acbd2b5d21990a38673f
parentOn startup, start scenes after we're set up all local scenes, rather than sta... (diff)
parentMake default config directory "." (diff)
downloadopensim-SC_OLD-7ca42d57110b5193d1a64145e3b3a5a2ada715b3.zip
opensim-SC_OLD-7ca42d57110b5193d1a64145e3b3a5a2ada715b3.tar.gz
opensim-SC_OLD-7ca42d57110b5193d1a64145e3b3a5a2ada715b3.tar.bz2
opensim-SC_OLD-7ca42d57110b5193d1a64145e3b3a5a2ada715b3.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
-rw-r--r--OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs6
-rw-r--r--bin/Robust.HG.ini.example2
-rw-r--r--bin/Robust.ini.example2
3 files changed, 8 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs b/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
index eb37626..e6d6cbf 100644
--- a/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
+++ b/OpenSim/Region/CoreModules/Framework/InventoryAccess/InventoryAccessModule.cs
@@ -671,6 +671,12 @@ namespace OpenSim.Region.CoreModules.Framework.InventoryAccess
671 { 671 {
672 InventoryFolderBase f = new InventoryFolderBase(so.FromFolderID, userID); 672 InventoryFolderBase f = new InventoryFolderBase(so.FromFolderID, userID);
673 folder = m_Scene.InventoryService.GetFolder(f); 673 folder = m_Scene.InventoryService.GetFolder(f);
674
675 if(folder.Type == 14 || folder.Type == 16)
676 {
677 // folder.Type = 6;
678 folder = m_Scene.InventoryService.GetFolderForType(userID, AssetType.Object);
679 }
674 } 680 }
675 } 681 }
676 682
diff --git a/bin/Robust.HG.ini.example b/bin/Robust.HG.ini.example
index d74f205..fee2a87 100644
--- a/bin/Robust.HG.ini.example
+++ b/bin/Robust.HG.ini.example
@@ -35,7 +35,7 @@
35 ; Modular configurations 35 ; Modular configurations
36 ; Set path to directory for modular ini files... 36 ; Set path to directory for modular ini files...
37 ; The Robust.exe process must have R/W access to the location 37 ; The Robust.exe process must have R/W access to the location
38 ConfigDirectory = "/home/opensim/etc/Configs" 38 ConfigDirectory = "."
39 39
40[ServiceList] 40[ServiceList]
41 41
diff --git a/bin/Robust.ini.example b/bin/Robust.ini.example
index b7b2524..2d5aa8c 100644
--- a/bin/Robust.ini.example
+++ b/bin/Robust.ini.example
@@ -27,7 +27,7 @@
27 ; Modular configurations 27 ; Modular configurations
28 ; Set path to directory for modular ini files... 28 ; Set path to directory for modular ini files...
29 ; The Robust.exe process must have R/W access to the location 29 ; The Robust.exe process must have R/W access to the location
30 ConfigDirectory = "/home/opensim/etc/Configs" 30 ConfigDirectory = "."
31 31
32[ServiceList] 32[ServiceList]
33AssetServiceConnector = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector" 33AssetServiceConnector = "8003/OpenSim.Server.Handlers.dll:AssetServiceConnector"