aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/ScenePresence.cs
diff options
context:
space:
mode:
authorMelanie2010-03-15 17:12:08 +0000
committerMelanie2010-03-15 17:12:08 +0000
commit898fa637c3ef1e86d093239e4b968910b978dea5 (patch)
tree4497805d6113335b82603ec33b8845aea0e47351 /OpenSim/Region/Framework/Scenes/ScenePresence.cs
parentCache UserLevel in ScenePresence on SP creation. Change IsAdministrator (diff)
parentMerge branch 'master' of ssh://3dhosting.de/var/git/careminster (diff)
downloadopensim-SC_OLD-898fa637c3ef1e86d093239e4b968910b978dea5.zip
opensim-SC_OLD-898fa637c3ef1e86d093239e4b968910b978dea5.tar.gz
opensim-SC_OLD-898fa637c3ef1e86d093239e4b968910b978dea5.tar.bz2
opensim-SC_OLD-898fa637c3ef1e86d093239e4b968910b978dea5.tar.xz
Merge branch 'careminster' into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Region/Framework/Scenes/ScenePresence.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/ScenePresence.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/Framework/Scenes/ScenePresence.cs b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
index f1be4d8..d8f93d7 100644
--- a/OpenSim/Region/Framework/Scenes/ScenePresence.cs
+++ b/OpenSim/Region/Framework/Scenes/ScenePresence.cs
@@ -878,7 +878,7 @@ namespace OpenSim.Region.Framework.Scenes
878 if (land != null) 878 if (land != null)
879 { 879 {
880 //Don't restrict gods, estate managers, or land owners to the TP point. This behaviour mimics agni. 880 //Don't restrict gods, estate managers, or land owners to the TP point. This behaviour mimics agni.
881 if (land.LandData.LandingType == (byte)1 && land.LandData.UserLocation != Vector3.Zero && m_godlevel < 200 && !m_scene.RegionInfo.EstateSettings.IsEstateManager(m_uuid) && land.LandData.OwnerID != m_uuid) 881 if (land.LandData.LandingType == (byte)1 && land.LandData.UserLocation != Vector3.Zero && m_godLevel < 200 && !m_scene.RegionInfo.EstateSettings.IsEstateManager(m_uuid) && land.LandData.OwnerID != m_uuid)
882 { 882 {
883 pos = land.LandData.UserLocation; 883 pos = land.LandData.UserLocation;
884 } 884 }