aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Scenes/SceneObjectPart.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/Framework/Scenes/SceneObjectPart.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/Framework/Scenes/SceneObjectPart.cs')
-rw-r--r--OpenSim/Region/Framework/Scenes/SceneObjectPart.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
index 032fbe8..a0fabff 100644
--- a/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
+++ b/OpenSim/Region/Framework/Scenes/SceneObjectPart.cs
@@ -56,9 +56,10 @@ namespace OpenSim.Region.Framework.Scenes
56 LINK = 32, 56 LINK = 32,
57 ALLOWED_DROP = 64, 57 ALLOWED_DROP = 64,
58 OWNER = 128, 58 OWNER = 128,
59 REGION_RESTART = 256, 59 REGION = 256,
60 REGION = 512, 60 TELEPORT = 512,
61 TELEPORT = 1024 61 REGION_RESTART = 1024,
62 ANIMATION = 16384
62 } 63 }
63 64
64 // I don't really know where to put this except here. 65 // I don't really know where to put this except here.