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.
This commit is contained in:
Melanie Thielker
2009-06-25 17:53:03 +00:00
parent 9e714b9784
commit 82305b0dea
2 changed files with 117 additions and 13 deletions

View File

@@ -65,8 +65,8 @@ namespace OpenSim.Framework.RegionLoader.Filesystem
if (configFiles.Length == 0 && iniFiles.Length == 0)
{
new RegionInfo("DEFAULT REGION CONFIG", Path.Combine(regionConfigPath, "default.xml"), false, m_configSource);
configFiles = Directory.GetFiles(regionConfigPath, "*.xml");
new RegionInfo("DEFAULT REGION CONFIG", Path.Combine(regionConfigPath, "Regions.ini"), false, m_configSource);
iniFiles = Directory.GetFiles(regionConfigPath, "*.ini");
}
List<RegionInfo> regionInfos = new List<RegionInfo>();