diff options
author | Sean Dague | 2008-09-09 14:51:41 +0000 |
---|---|---|
committer | Sean Dague | 2008-09-09 14:51:41 +0000 |
commit | f141751cf9bba02a6fdd78d4c1578d6b73f31897 (patch) | |
tree | d38ba4b1b8a73c4ccc34736039f1479f56359d70 /OpenSim/Region/ScriptEngine | |
parent | From: alan_webb@us.ibm.com (diff) | |
download | opensim-SC_OLD-f141751cf9bba02a6fdd78d4c1578d6b73f31897.zip opensim-SC_OLD-f141751cf9bba02a6fdd78d4c1578d6b73f31897.tar.gz opensim-SC_OLD-f141751cf9bba02a6fdd78d4c1578d6b73f31897.tar.bz2 opensim-SC_OLD-f141751cf9bba02a6fdd78d4c1578d6b73f31897.tar.xz |
From: alan_webb@us.ibm.com
Make CHANGED constants consistent with LSL, and consistent across the
code base
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | 3 | ||||
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | 2 |
2 files changed, 5 insertions, 0 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs index d59da96..4fba1fd 100644 --- a/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs +++ b/OpenSim/Region/ScriptEngine/Common/BuiltIn_Commands_BaseClass.cs | |||
@@ -2263,6 +2263,9 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
2263 | public const int CHANGED_LINK = 32; | 2263 | public const int CHANGED_LINK = 32; |
2264 | public const int CHANGED_ALLOWED_DROP = 64; | 2264 | public const int CHANGED_ALLOWED_DROP = 64; |
2265 | public const int CHANGED_OWNER = 128; | 2265 | public const int CHANGED_OWNER = 128; |
2266 | public const int CHANGED_REGION_RESTART = 256; | ||
2267 | public const int CHANGED_REGION = 512; | ||
2268 | public const int CHANGED_TELEPORT = 1024; | ||
2266 | public const int TYPE_INVALID = 0; | 2269 | public const int TYPE_INVALID = 0; |
2267 | public const int TYPE_INTEGER = 1; | 2270 | public const int TYPE_INTEGER = 1; |
2268 | public const int TYPE_double = 2; | 2271 | public const int TYPE_double = 2; |
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs index 6de7ca4..5bcb135 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs | |||
@@ -258,6 +258,8 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase | |||
258 | public const int CHANGED_ALLOWED_DROP = 64; | 258 | public const int CHANGED_ALLOWED_DROP = 64; |
259 | public const int CHANGED_OWNER = 128; | 259 | public const int CHANGED_OWNER = 128; |
260 | public const int CHANGED_REGION_RESTART = 256; | 260 | public const int CHANGED_REGION_RESTART = 256; |
261 | public const int CHANGED_REGION = 512; | ||
262 | public const int CHANGED_TELEPORT = 1024; | ||
261 | public const int TYPE_INVALID = 0; | 263 | public const int TYPE_INVALID = 0; |
262 | public const int TYPE_INTEGER = 1; | 264 | public const int TYPE_INTEGER = 1; |
263 | public const int TYPE_FLOAT = 2; | 265 | public const int TYPE_FLOAT = 2; |