diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs index 43865c8..33e5c68 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BaseClass.cs | |||
@@ -2158,8 +2158,8 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2158 | public const double SQRT2 = 1.414213538f; | 2158 | public const double SQRT2 = 1.414213538f; |
2159 | 2159 | ||
2160 | // Can not be public const? | 2160 | // Can not be public const? |
2161 | public vector ZERO_VECTOR = new vector(0, 0, 0); | 2161 | public vector ZERO_VECTOR = new vector(0.0, 0.0, 0.0); |
2162 | public rotation ZERO_ROTATION = new rotation(0, 0, 0, 0); | 2162 | public rotation ZERO_ROTATION = new rotation(0.0, 0, 0.0, 1.0); |
2163 | 2163 | ||
2164 | } | 2164 | } |
2165 | } \ No newline at end of file | 2165 | } \ No newline at end of file |