diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs b/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs index 1db1446..b03e761 100644 --- a/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs +++ b/OpenSim/Grid/ScriptEngine/DotNetEngine/Compiler/LSL/LSL_BaseClass.cs | |||
@@ -2118,7 +2118,7 @@ namespace OpenSim.Grid.ScriptEngine.DotNetEngine.Compiler.LSL | |||
2118 | public const int PUBLIC_CHANNEL 0x00000000 | 2118 | public const int PUBLIC_CHANNEL 0x00000000 |
2119 | 2119 | ||
2120 | // Can not be public const? | 2120 | // Can not be public const? |
2121 | public vector ZERO_VECTOR = new vector(0, 0, 0); | 2121 | public static readonly vector ZERO_VECTOR = new vector(0.0, 0.0, 0.0); |
2122 | public rotation ZERO_ROTATION = new rotation(0, 0, 0, 0); | 2122 | public static readonly rotation ZERO_ROTATION = new rotation(0.0, 0.0, 0.0, 1.0); |
2123 | } | 2123 | } |
2124 | } | 2124 | } |