diff options
author | Diva Canto | 2015-11-30 19:49:45 -0800 |
---|---|---|
committer | Diva Canto | 2015-11-30 19:49:45 -0800 |
commit | b5a8a69c017c08b0e2fffd3bf00ab34eaf98e1f3 (patch) | |
tree | 1f3c27e178c7748c7e06949d0a8069f0cf4400e2 /OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |
parent | Replaced the mono addins dlls with freshly compiled ones, because the existin... (diff) | |
parent | fix a few typos (diff) | |
download | opensim-SC_OLD-b5a8a69c017c08b0e2fffd3bf00ab34eaf98e1f3.zip opensim-SC_OLD-b5a8a69c017c08b0e2fffd3bf00ab34eaf98e1f3.tar.gz opensim-SC_OLD-b5a8a69c017c08b0e2fffd3bf00ab34eaf98e1f3.tar.bz2 opensim-SC_OLD-b5a8a69c017c08b0e2fffd3bf00ab34eaf98e1f3.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 38cbdbc..8d59c2d 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -3575,13 +3575,13 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
3575 | if (strength <= 0.0 || damping <= 0.0) | 3575 | if (strength <= 0.0 || damping <= 0.0) |
3576 | return; | 3576 | return; |
3577 | 3577 | ||
3578 | llSetRot(rot); | 3578 | llSetLocalRot(rot); |
3579 | } | 3579 | } |
3580 | else | 3580 | else |
3581 | { | 3581 | { |
3582 | if (strength == 0) | 3582 | if (strength == 0) |
3583 | { | 3583 | { |
3584 | llSetRot(rot); | 3584 | llSetLocalRot(rot); |
3585 | return; | 3585 | return; |
3586 | } | 3586 | } |
3587 | 3587 | ||