A very ugly and temporary hack to disable the RegionCombinerModule RegionLoaded from firing for testing
parent
c21f19741d
commit
c3712a56f5
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue