A very ugly and temporary hack to disable the RegionCombinerModule RegionLoaded from firing for testing
parent
c21f19741d
commit
c3712a56f5
|
@ -286,8 +286,15 @@ namespace OpenSim.ApplicationPlugins.RegionModulesController
|
|||
//
|
||||
foreach (ISharedRegionModule module in sharedlist)
|
||||
{
|
||||
m_log.Debug("[REGIONMODULE]: Calling RegionLoaded for " + module);
|
||||
module.RegionLoaded(scene);
|
||||
if (!module.ToString().Contains("RegionCombinerModule"))
|
||||
{
|
||||
m_log.Debug("[REGIONMODULE]: Calling RegionLoaded for " + module);
|
||||
module.RegionLoaded(scene);
|
||||
}
|
||||
else
|
||||
{
|
||||
m_log.Debug("[REGIONMODULE]: Skipping RegionCombinerModule");
|
||||
}
|
||||
}
|
||||
|
||||
foreach (INonSharedRegionModule module in list)
|
||||
|
|
Loading…
Reference in New Issue