aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/CoreModules/ServiceConnectorsOut/Interregion
diff options
context:
space:
mode:
authorDiva Canto2009-12-19 10:16:07 -0800
committerDiva Canto2009-12-19 10:16:07 -0800
commit26e3a8ee4b63f67b7fd3957b9f8b94d874ed5627 (patch)
tree5ce45b14bfd434d93ca1ec87710c979989b6d330 /OpenSim/Region/CoreModules/ServiceConnectorsOut/Interregion
parentrandom drive-by minor math optimization. No need for concern, bitshed was wit... (diff)
downloadopensim-SC_OLD-26e3a8ee4b63f67b7fd3957b9f8b94d874ed5627.zip
opensim-SC_OLD-26e3a8ee4b63f67b7fd3957b9f8b94d874ed5627.tar.gz
opensim-SC_OLD-26e3a8ee4b63f67b7fd3957b9f8b94d874ed5627.tar.bz2
opensim-SC_OLD-26e3a8ee4b63f67b7fd3957b9f8b94d874ed5627.tar.xz
* Bug fix in HG: preserve the home region coordinates across multiple HG TPs.
* Removed unnecessary debug messages.
Diffstat (limited to 'OpenSim/Region/CoreModules/ServiceConnectorsOut/Interregion')
-rw-r--r--OpenSim/Region/CoreModules/ServiceConnectorsOut/Interregion/LocalInterregionComms.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Interregion/LocalInterregionComms.cs b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Interregion/LocalInterregionComms.cs
index d9f6e33..bdfe3b1 100644
--- a/OpenSim/Region/CoreModules/ServiceConnectorsOut/Interregion/LocalInterregionComms.cs
+++ b/OpenSim/Region/CoreModules/ServiceConnectorsOut/Interregion/LocalInterregionComms.cs
@@ -157,7 +157,9 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Interregion
157 } 157 }
158 158
159// m_log.DebugFormat("[LOCAL COMMS]: Did not find region {0} for SendCreateChildAgent", regionHandle); 159// m_log.DebugFormat("[LOCAL COMMS]: Did not find region {0} for SendCreateChildAgent", regionHandle);
160 reason = "Did not find region."; 160 uint x = 0, y = 0;
161 Utils.LongToUInts(regionHandle, out x, out y);
162 reason = "Did not find region " + x + "-" + y;
161 return false; 163 return false;
162 } 164 }
163 165