diff options
author | UbitUmarov | 2015-12-14 14:07:30 +0000 |
---|---|---|
committer | UbitUmarov | 2015-12-14 14:07:30 +0000 |
commit | 2f7e9a97dbe338fc69bfe043d54cdcdb0541fab8 (patch) | |
tree | 5556e2978a62bb82c18760bd56b03bdf5b4d806e /OpenSim | |
parent | bug fix (diff) | |
download | opensim-SC-2f7e9a97dbe338fc69bfe043d54cdcdb0541fab8.zip opensim-SC-2f7e9a97dbe338fc69bfe043d54cdcdb0541fab8.tar.gz opensim-SC-2f7e9a97dbe338fc69bfe043d54cdcdb0541fab8.tar.bz2 opensim-SC-2f7e9a97dbe338fc69bfe043d54cdcdb0541fab8.tar.xz |
rename a parameter
Diffstat (limited to 'OpenSim')
-rwxr-xr-x | OpenSim/Region/Framework/Scenes/Scene.cs | 4 |
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 | { |