diff options
Diffstat (limited to 'OpenSim/Framework/RegionLoader')
-rw-r--r-- | OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs | 4 | ||||
-rw-r--r-- | OpenSim/Framework/RegionLoader/Web/RegionLoaderWebServer.cs | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs b/OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs index a710f50..66a6ec8 100644 --- a/OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs +++ b/OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs | |||
@@ -49,14 +49,14 @@ namespace OpenSim.Framework.RegionLoader.Filesystem | |||
49 | 49 | ||
50 | if (configFiles.Length == 0) | 50 | if (configFiles.Length == 0) |
51 | { | 51 | { |
52 | new RegionInfo("DEFAULT REGION CONFIG", Path.Combine(regionConfigPath, "default.xml")); | 52 | new RegionInfo("DEFAULT REGION CONFIG", Path.Combine(regionConfigPath, "default.xml"),false); |
53 | configFiles = Directory.GetFiles(regionConfigPath, "*.xml"); | 53 | configFiles = Directory.GetFiles(regionConfigPath, "*.xml"); |
54 | } | 54 | } |
55 | 55 | ||
56 | RegionInfo[] regionInfos = new RegionInfo[configFiles.Length]; | 56 | RegionInfo[] regionInfos = new RegionInfo[configFiles.Length]; |
57 | for (int i = 0; i < configFiles.Length; i++) | 57 | for (int i = 0; i < configFiles.Length; i++) |
58 | { | 58 | { |
59 | RegionInfo regionInfo = new RegionInfo("REGION CONFIG #" + (i + 1), configFiles[i]); | 59 | RegionInfo regionInfo = new RegionInfo("REGION CONFIG #" + (i + 1), configFiles[i],false); |
60 | regionInfos[i] = regionInfo; | 60 | regionInfos[i] = regionInfo; |
61 | } | 61 | } |
62 | 62 | ||
diff --git a/OpenSim/Framework/RegionLoader/Web/RegionLoaderWebServer.cs b/OpenSim/Framework/RegionLoader/Web/RegionLoaderWebServer.cs index 1625fa6..80acbae 100644 --- a/OpenSim/Framework/RegionLoader/Web/RegionLoaderWebServer.cs +++ b/OpenSim/Framework/RegionLoader/Web/RegionLoaderWebServer.cs | |||
@@ -86,7 +86,7 @@ namespace OpenSim.Framework.RegionLoader.Web | |||
86 | { | 86 | { |
87 | MainLog.Instance.Debug(xmlDoc.FirstChild.ChildNodes[i].OuterXml); | 87 | MainLog.Instance.Debug(xmlDoc.FirstChild.ChildNodes[i].OuterXml); |
88 | regionInfos[i] = | 88 | regionInfos[i] = |
89 | new RegionInfo("REGION CONFIG #" + (i + 1), xmlDoc.FirstChild.ChildNodes[i]); | 89 | new RegionInfo("REGION CONFIG #" + (i + 1), xmlDoc.FirstChild.ChildNodes[i],false); |
90 | } | 90 | } |
91 | 91 | ||
92 | return regionInfos; | 92 | return regionInfos; |