aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
diff options
context:
space:
mode:
authorTom2010-08-06 02:39:42 -0700
committerTom2010-08-06 02:40:31 -0700
commitc5c6627adb79644b93c5871243a9eeeff553829c (patch)
tree49201fd9052cf40d666a38b0a62779a13540542d /OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
parentllRequestSimulatorData DATA_SIM_POS : Divide by RegionSize, don't multiply. T... (diff)
downloadopensim-SC_OLD-c5c6627adb79644b93c5871243a9eeeff553829c.zip
opensim-SC_OLD-c5c6627adb79644b93c5871243a9eeeff553829c.tar.gz
opensim-SC_OLD-c5c6627adb79644b93c5871243a9eeeff553829c.tar.bz2
opensim-SC_OLD-c5c6627adb79644b93c5871243a9eeeff553829c.tar.xz
Implement CHANGED_REGION_(RE)START and also fix various CHANGED_* constants which had the wrong values (checked using LSL in SL). This addresses mantis #217 and mantis #53.
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs')
-rw-r--r--OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
index 96f6486..69f48c9 100644
--- a/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
+++ b/OpenSim/Region/ScriptEngine/Shared/Api/Runtime/LSL_Constants.cs
@@ -273,10 +273,10 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
273 public const int CHANGED_LINK = 32; 273 public const int CHANGED_LINK = 32;
274 public const int CHANGED_ALLOWED_DROP = 64; 274 public const int CHANGED_ALLOWED_DROP = 64;
275 public const int CHANGED_OWNER = 128; 275 public const int CHANGED_OWNER = 128;
276 public const int CHANGED_REGION_RESTART = 256; 276 public const int CHANGED_REGION = 256;
277 public const int CHANGED_REGION_START = 256; //LL Changed the constant from CHANGED_REGION_RESTART 277 public const int CHANGED_TELEPORT = 512;
278 public const int CHANGED_REGION = 512; 278 public const int CHANGED_REGION_RESTART = 1024;
279 public const int CHANGED_TELEPORT = 1024; 279 public const int CHANGED_REGION_START = 1024; //LL Changed the constant from CHANGED_REGION_RESTART
280 public const int CHANGED_ANIMATION = 16384; 280 public const int CHANGED_ANIMATION = 16384;
281 public const int TYPE_INVALID = 0; 281 public const int TYPE_INVALID = 0;
282 public const int TYPE_INTEGER = 1; 282 public const int TYPE_INTEGER = 1;