A very ugly and temporary hack to disable the RegionCombinerModule RegionLoaded from firing for testing

prioritization
John Hurliman 2009-10-16 15:34:27 -07:00
parent c21f19741d
commit c3712a56f5
1 changed files with 9 additions and 2 deletions

View File

@ -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)