* Bug fix in HG: preserve the home region coordinates across multiple HG TPs.

* Removed unnecessary debug messages.
This commit is contained in:
Diva Canto
2009-12-19 10:16:07 -08:00
parent 9485f17bf9
commit 26e3a8ee4b
3 changed files with 16 additions and 5 deletions

View File

@@ -157,7 +157,9 @@ namespace OpenSim.Region.CoreModules.ServiceConnectorsOut.Interregion
}
// m_log.DebugFormat("[LOCAL COMMS]: Did not find region {0} for SendCreateChildAgent", regionHandle);
reason = "Did not find region.";
uint x = 0, y = 0;
Utils.LongToUInts(regionHandle, out x, out y);
reason = "Did not find region " + x + "-" + y;
return false;
}