aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs
diff options
context:
space:
mode:
authorMelanie Thielker2009-06-25 17:53:03 +0000
committerMelanie Thielker2009-06-25 17:53:03 +0000
commit82305b0dea88daef96cecd09a3635814d0dfd6d6 (patch)
tree7eee61de1b53378513fde8da009e20c2d36c4414 /OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs
parentAdd a comment and an example region config file (diff)
downloadopensim-SC_OLD-82305b0dea88daef96cecd09a3635814d0dfd6d6.zip
opensim-SC_OLD-82305b0dea88daef96cecd09a3635814d0dfd6d6.tar.gz
opensim-SC_OLD-82305b0dea88daef96cecd09a3635814d0dfd6d6.tar.bz2
opensim-SC_OLD-82305b0dea88daef96cecd09a3635814d0dfd6d6.tar.xz
From this version onwards, all new region files created automatically will
be created as new style INI files. This doesn't yet affect create region, but it does affect first starts of OpenSim.exe Because master avatars are slated to be replaced by estate owners, this now allows regions to be created without any master avatar data.
Diffstat (limited to 'OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs')
-rw-r--r--OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs b/OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs
index b4b15e4..44f44fe 100644
--- a/OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs
+++ b/OpenSim/Framework/RegionLoader/Filesystem/RegionLoaderFileSystem.cs
@@ -65,8 +65,8 @@ namespace OpenSim.Framework.RegionLoader.Filesystem
65 65
66 if (configFiles.Length == 0 && iniFiles.Length == 0) 66 if (configFiles.Length == 0 && iniFiles.Length == 0)
67 { 67 {
68 new RegionInfo("DEFAULT REGION CONFIG", Path.Combine(regionConfigPath, "default.xml"), false, m_configSource); 68 new RegionInfo("DEFAULT REGION CONFIG", Path.Combine(regionConfigPath, "Regions.ini"), false, m_configSource);
69 configFiles = Directory.GetFiles(regionConfigPath, "*.xml"); 69 iniFiles = Directory.GetFiles(regionConfigPath, "*.ini");
70 } 70 }
71 71
72 List<RegionInfo> regionInfos = new List<RegionInfo>(); 72 List<RegionInfo> regionInfos = new List<RegionInfo>();