remove anoying crossing messages on open borders
parent
79b2926ce1
commit
0fa3af96a4
|
@ -1532,13 +1532,15 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
|
||||||
CrossAsyncDelegate icon = (CrossAsyncDelegate)iar.AsyncState;
|
CrossAsyncDelegate icon = (CrossAsyncDelegate)iar.AsyncState;
|
||||||
ScenePresence agent = icon.EndInvoke(iar);
|
ScenePresence agent = icon.EndInvoke(iar);
|
||||||
|
|
||||||
m_log.DebugFormat("[ENTITY TRANSFER MODULE]: Crossing agent {0} {1} completed.", agent.Firstname, agent.Lastname);
|
|
||||||
|
|
||||||
if(!agent.IsChildAgent)
|
if(!agent.IsChildAgent)
|
||||||
{
|
{
|
||||||
// crossing failed
|
// crossing failed
|
||||||
agent.CrossToNewRegionFail();
|
agent.CrossToNewRegionFail();
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
m_log.DebugFormat("[ENTITY TRANSFER MODULE]: Crossing agent {0} {1} completed.", agent.Firstname, agent.Lastname);
|
||||||
|
|
||||||
agent.IsInTransit = false;
|
agent.IsInTransit = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -2287,9 +2289,8 @@ namespace OpenSim.Region.CoreModules.Framework.EntityTransfer
|
||||||
protected GridRegion GetRegionContainingWorldLocation(IGridService pGridService, UUID pScopeID,
|
protected GridRegion GetRegionContainingWorldLocation(IGridService pGridService, UUID pScopeID,
|
||||||
double px, double py, uint pSizeHint)
|
double px, double py, uint pSizeHint)
|
||||||
{
|
{
|
||||||
m_log.DebugFormat("{0} GetRegionContainingWorldLocation: call, XY=<{1},{2}>", LogHeader, px, py);
|
// m_log.DebugFormat("{0} GetRegionContainingWorldLocation: call, XY=<{1},{2}>", LogHeader, px, py);
|
||||||
GridRegion ret = null;
|
GridRegion ret = null;
|
||||||
const double fudge = 2.0;
|
|
||||||
|
|
||||||
if (m_notFoundLocationCache.Contains(px, py))
|
if (m_notFoundLocationCache.Contains(px, py))
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue