mirror of
https://github.com/opensim/opensim.git
synced 2026-08-06 09:16:28 +08:00
first step removing MegaRegions: refuse to run. Thanks to all that made MegaRegions possible, they where a important OpenSim feature, but can no longer be mantained
This commit is contained in:
@@ -218,6 +218,13 @@ namespace OpenSim
|
||||
IConfig startupConfig = Config.Configs["Startup"];
|
||||
if (startupConfig != null)
|
||||
{
|
||||
// refuse to run MegaRegions
|
||||
if(startupConfig.GetBoolean("CombineContiguousRegions", false))
|
||||
{
|
||||
m_log.Fatal("CombineContiguousRegions (MegaRegions) option is no longer suported. Use a older version to save region contents as OAR, then import into a fresh install of this new version");
|
||||
throw new Exception("CombineContiguousRegions not suported");
|
||||
}
|
||||
|
||||
string pidFile = startupConfig.GetString("PIDFile", String.Empty);
|
||||
if (pidFile != String.Empty)
|
||||
CreatePIDFile(pidFile);
|
||||
|
||||
Reference in New Issue
Block a user