mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 17:05:55 +08:00
A very ugly and temporary hack to disable the RegionCombinerModule RegionLoaded from firing for testing
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user