Add a module selection option for the MapImage Module as well
parent
1d7095fbce
commit
9131ba23e1
|
@ -134,6 +134,12 @@ namespace OpenSim.Region.Environment.Modules.World.WorldMap
|
||||||
{
|
{
|
||||||
m_scene = scene;
|
m_scene = scene;
|
||||||
m_config = source;
|
m_config = source;
|
||||||
|
|
||||||
|
IConfig startupConfig = m_config.Configs["Startup"];
|
||||||
|
if (startupConfig.GetString("MapImageModule", "MapImageModule") !=
|
||||||
|
"MapImageModule")
|
||||||
|
return;
|
||||||
|
|
||||||
m_scene.RegisterModuleInterface<IMapImageGenerator>(this);
|
m_scene.RegisterModuleInterface<IMapImageGenerator>(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -115,6 +115,7 @@ DefaultScriptEngine = "DotNetEngine"
|
||||||
; ##
|
; ##
|
||||||
|
|
||||||
;WorldMapModule = "WorldMap"
|
;WorldMapModule = "WorldMap"
|
||||||
|
;MapImageModule = "MapImageModule"
|
||||||
|
|
||||||
[StandAlone]
|
[StandAlone]
|
||||||
accounts_authenticate = true
|
accounts_authenticate = true
|
||||||
|
|
Loading…
Reference in New Issue