aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region
diff options
context:
space:
mode:
authorUbitUmarov2015-12-14 14:07:30 +0000
committerUbitUmarov2015-12-14 14:07:30 +0000
commit2f7e9a97dbe338fc69bfe043d54cdcdb0541fab8 (patch)
tree5556e2978a62bb82c18760bd56b03bdf5b4d806e /OpenSim/Region
parentbug fix (diff)
downloadopensim-SC_OLD-2f7e9a97dbe338fc69bfe043d54cdcdb0541fab8.zip
opensim-SC_OLD-2f7e9a97dbe338fc69bfe043d54cdcdb0541fab8.tar.gz
opensim-SC_OLD-2f7e9a97dbe338fc69bfe043d54cdcdb0541fab8.tar.bz2
opensim-SC_OLD-2f7e9a97dbe338fc69bfe043d54cdcdb0541fab8.tar.xz
rename a parameter
Diffstat (limited to 'OpenSim/Region')
-rwxr-xr-xOpenSim/Region/Framework/Scenes/Scene.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/Framework/Scenes/Scene.cs b/OpenSim/Region/Framework/Scenes/Scene.cs
index 863fb14..60079e2 100755
--- a/OpenSim/Region/Framework/Scenes/Scene.cs
+++ b/OpenSim/Region/Framework/Scenes/Scene.cs
@@ -6206,7 +6206,7 @@ Environment.Exit(1);
6206 } 6206 }
6207 6207
6208 // check access to land. 6208 // check access to land.
6209 public bool CheckLandPositionAccess(UUID agentID, bool agentRootCrossing, bool checkTeleHub, Vector3 position, out string reason) 6209 public bool CheckLandPositionAccess(UUID agentID, bool NotCrossing, bool checkTeleHub, Vector3 position, out string reason)
6210 { 6210 {
6211 reason = string.Empty; 6211 reason = string.Empty;
6212 6212
@@ -6222,7 +6222,7 @@ Environment.Exit(1);
6222 if(isManager) 6222 if(isManager)
6223 return true; 6223 return true;
6224 6224
6225 if (agentRootCrossing) 6225 if (NotCrossing)
6226 { 6226 {
6227 if (!RegionInfo.EstateSettings.AllowDirectTeleport) 6227 if (!RegionInfo.EstateSettings.AllowDirectTeleport)
6228 { 6228 {