aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authormeta72010-08-08 17:32:20 -0700
committermeta72010-08-08 17:32:20 -0700
commit680e801bf229d54dc57dbca24e841f7f2e8f43d4 (patch)
treed74b7c2ccb3319774461bcb6320a7d89707f2a36 /OpenSim
parentFix minimap issues. This addresses mantis #228. (diff)
downloadopensim-SC_OLD-680e801bf229d54dc57dbca24e841f7f2e8f43d4.zip
opensim-SC_OLD-680e801bf229d54dc57dbca24e841f7f2e8f43d4.tar.gz
opensim-SC_OLD-680e801bf229d54dc57dbca24e841f7f2e8f43d4.tar.bz2
opensim-SC_OLD-680e801bf229d54dc57dbca24e841f7f2e8f43d4.tar.xz
Print a console message when we deny access because of no valid parcel found.
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/Framework/Scenes/Scene.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 8a8dabc..779f898 100644
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -3513,7 +3513,8 @@ namespace OpenSim.Region.Framework.Scenes
3513 if (tp == TeleportFlags.ViaLogin) 3513 if (tp == TeleportFlags.ViaLogin)
3514 { 3514 {
3515 if (land != null && !TestLandRestrictions(agent, land, out reason)) 3515 if (land != null && !TestLandRestrictions(agent, land, out reason))
3516 { 3516 {
3517 m_log.DebugFormat("[CONNECTION BEGIN]: Denying access to {0} due to no land access", agent.AgentID.ToString());
3517 return false; 3518 return false;
3518 } 3519 }
3519 } 3520 }