Print a console message when we deny access because of no valid parcel found.
parent
603b3a1606
commit
680e801bf2
|
@ -3513,7 +3513,8 @@ namespace OpenSim.Region.Framework.Scenes
|
||||||
if (tp == TeleportFlags.ViaLogin)
|
if (tp == TeleportFlags.ViaLogin)
|
||||||
{
|
{
|
||||||
if (land != null && !TestLandRestrictions(agent, land, out reason))
|
if (land != null && !TestLandRestrictions(agent, land, out reason))
|
||||||
{
|
{
|
||||||
|
m_log.DebugFormat("[CONNECTION BEGIN]: Denying access to {0} due to no land access", agent.AgentID.ToString());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue