aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
authorMelanie2010-08-06 17:55:41 +0100
committerMelanie2010-08-06 17:55:41 +0100
commitcc05fc43b92798d32ef334c8129a624881d799f1 (patch)
tree8ed72e6c9d1cf6d1e96091c7fbc9e57a4c712427 /OpenSim
parentMerge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff)
downloadopensim-SC_OLD-cc05fc43b92798d32ef334c8129a624881d799f1.zip
opensim-SC_OLD-cc05fc43b92798d32ef334c8129a624881d799f1.tar.gz
opensim-SC_OLD-cc05fc43b92798d32ef334c8129a624881d799f1.tar.bz2
opensim-SC_OLD-cc05fc43b92798d32ef334c8129a624881d799f1.tar.xz
Fix a parenthesis in prior commit
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
index ba1a5f1..32e46ec 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs
@@ -1929,7 +1929,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
1929 protected void SetPos(SceneObjectPart part, LSL_Vector targetPos) 1929 protected void SetPos(SceneObjectPart part, LSL_Vector targetPos)
1930 { 1930 {
1931 // Capped movemment if distance > 10m (http://wiki.secondlife.com/wiki/LlSetPos) 1931 // Capped movemment if distance > 10m (http://wiki.secondlife.com/wiki/LlSetPos)
1932 LSL_Vector currentPos = GetPartLocalPos((part); 1932 LSL_Vector currentPos = GetPartLocalPos(part);
1933 1933
1934 float ground = World.GetGroundHeight((float)targetPos.x, (float)targetPos.y); 1934 float ground = World.GetGroundHeight((float)targetPos.x, (float)targetPos.y);
1935 bool disable_underground_movement = m_ScriptEngine.Config.GetBoolean("DisableUndergroundMovement", true); 1935 bool disable_underground_movement = m_ScriptEngine.Config.GetBoolean("DisableUndergroundMovement", true);