aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorJohn Hurliman2009-10-16 16:49:13 -0700
committerJohn Hurliman2009-10-16 16:49:13 -0700
commit7d6d94a7b58c91ce2720d57235768813938efa85 (patch)
treea0ab7c5b72b2d4d6fcd7c4afa236a87009b0993f /OpenSim
parentChanging the region module loading foreach loops to typecast things to the IR... (diff)
downloadopensim-SC_OLD-7d6d94a7b58c91ce2720d57235768813938efa85.zip
opensim-SC_OLD-7d6d94a7b58c91ce2720d57235768813938efa85.tar.gz
opensim-SC_OLD-7d6d94a7b58c91ce2720d57235768813938efa85.tar.bz2
opensim-SC_OLD-7d6d94a7b58c91ce2720d57235768813938efa85.tar.xz
More debugging of RegionCombinerModule.RegionLoaded() by making RegionLoaded() a two line function
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/CoreModules/World/Land/RegionCombinerModule.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/OpenSim/Region/CoreModules/World/Land/RegionCombinerModule.cs b/OpenSim/Region/CoreModules/World/Land/RegionCombinerModule.cs
index 6499915..d8c5ed9 100644
--- a/OpenSim/Region/CoreModules/World/Land/RegionCombinerModule.cs
+++ b/OpenSim/Region/CoreModules/World/Land/RegionCombinerModule.cs
@@ -81,8 +81,12 @@ namespace OpenSim.Region.CoreModules.World.Land
81 81
82 public void RegionLoaded(Scene scene) 82 public void RegionLoaded(Scene scene)
83 { 83 {
84 if (!enabledYN) 84 if (enabledYN)
85 return; 85 RegionLoadedDoWork(scene);
86 }
87
88 private void RegionLoadedDoWork(Scene scene)
89 {
86/* 90/*
87 // For testing on a single instance 91 // For testing on a single instance
88 if (scene.RegionInfo.RegionLocX == 1004 && scene.RegionInfo.RegionLocY == 1000) 92 if (scene.RegionInfo.RegionLocX == 1004 && scene.RegionInfo.RegionLocY == 1000)