More debugging of RegionCombinerModule.RegionLoaded() by making RegionLoaded() a two line function

prioritization
John Hurliman 2009-10-16 16:49:13 -07:00
parent f3f93228e0
commit 7d6d94a7b5
1 changed files with 6 additions and 2 deletions

View File

@ -81,8 +81,12 @@ namespace OpenSim.Region.CoreModules.World.Land
public void RegionLoaded(Scene scene) public void RegionLoaded(Scene scene)
{ {
if (!enabledYN) if (enabledYN)
return; RegionLoadedDoWork(scene);
}
private void RegionLoadedDoWork(Scene scene)
{
/* /*
// For testing on a single instance // For testing on a single instance
if (scene.RegionInfo.RegionLocX == 1004 && scene.RegionInfo.RegionLocY == 1000) if (scene.RegionInfo.RegionLocX == 1004 && scene.RegionInfo.RegionLocY == 1000)