diff options
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs index f6d94a3..50f9377 100644 --- a/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs +++ b/OpenSim/Region/ScriptEngine/Shared/LSL_Types.cs | |||
@@ -377,10 +377,10 @@ namespace OpenSim.Region.ScriptEngine.Shared | |||
377 | double length = Math.Sqrt(x * x + y * y + z * z + s * s); | 377 | double length = Math.Sqrt(x * x + y * y + z * z + s * s); |
378 | if (length < float.Epsilon) | 378 | if (length < float.Epsilon) |
379 | { | 379 | { |
380 | x = 1; | 380 | x = 0; |
381 | y = 0; | 381 | y = 0; |
382 | z = 0; | 382 | z = 0; |
383 | s = 0; | 383 | s = 1; |
384 | } | 384 | } |
385 | else | 385 | else |
386 | { | 386 | { |