*Added ability to skip any use of the console when configuring and assume default value. This is useful when the server is running by itself and a new region request is added without sufficient information

This commit is contained in:
mingchen
2008-01-04 14:14:15 +00:00
parent f0b149dfc1
commit 81b4c7be3e
12 changed files with 22 additions and 20 deletions

View File

@@ -86,7 +86,7 @@ namespace OpenSim.Framework.RegionLoader.Web
{
MainLog.Instance.Debug(xmlDoc.FirstChild.ChildNodes[i].OuterXml);
regionInfos[i] =
new RegionInfo("REGION CONFIG #" + (i + 1), xmlDoc.FirstChild.ChildNodes[i]);
new RegionInfo("REGION CONFIG #" + (i + 1), xmlDoc.FirstChild.ChildNodes[i],false);
}
return regionInfos;