diff options
author | Melanie | 2010-08-06 17:55:41 +0100 |
---|---|---|
committer | Melanie | 2010-08-06 17:55:41 +0100 |
commit | cc05fc43b92798d32ef334c8129a624881d799f1 (patch) | |
tree | 8ed72e6c9d1cf6d1e96091c7fbc9e57a4c712427 /OpenSim/Region/ScriptEngine | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-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/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 2 |
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); |