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

@ -285,10 +285,17 @@ namespace OpenSim.ApplicationPlugins.RegionModulesController
// The extra function stub is just that much cleaner // The extra function stub is just that much cleaner
// //
foreach (ISharedRegionModule module in sharedlist) foreach (ISharedRegionModule module in sharedlist)
{
if (!module.ToString().Contains("RegionCombinerModule"))
{ {
m_log.Debug("[REGIONMODULE]: Calling RegionLoaded for " + module); m_log.Debug("[REGIONMODULE]: Calling RegionLoaded for " + module);
module.RegionLoaded(scene); module.RegionLoaded(scene);
} }
else
{
m_log.Debug("[REGIONMODULE]: Skipping RegionCombinerModule");
}
}
foreach (INonSharedRegionModule module in list) foreach (INonSharedRegionModule module in list)
{ {