aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ScriptEngine
diff options
context:
space:
mode:
authorTom2010-08-06 06:41:25 -0700
committerTom2010-08-06 06:41:25 -0700
commit3ce335c6f865e1b42fbefd44f38f9a2da09ef853 (patch)
tree64872a9f8b9a089aa9ab90ad66f2d0df6479d1a8 /OpenSim/Region/ScriptEngine
parentMake sure the avatar position gets moved along with a prim it is sitting on. ... (diff)
downloadopensim-SC_OLD-3ce335c6f865e1b42fbefd44f38f9a2da09ef853.zip
opensim-SC_OLD-3ce335c6f865e1b42fbefd44f38f9a2da09ef853.tar.gz
opensim-SC_OLD-3ce335c6f865e1b42fbefd44f38f9a2da09ef853.tar.bz2
opensim-SC_OLD-3ce335c6f865e1b42fbefd44f38f9a2da09ef853.tar.xz
Fix StateSource constants, provide RegionStart
Diffstat (limited to 'OpenSim/Region/ScriptEngine')
-rw-r--r--OpenSim/Region/ScriptEngine/Interfaces/IScriptInstance.cs9
1 files changed, 5 insertions, 4 deletions
diff --git a/OpenSim/Region/ScriptEngine/Interfaces/IScriptInstance.cs b/OpenSim/Region/ScriptEngine/Interfaces/IScriptInstance.cs
index 9f6ea35..0c99d8c 100644
--- a/OpenSim/Region/ScriptEngine/Interfaces/IScriptInstance.cs
+++ b/OpenSim/Region/ScriptEngine/Interfaces/IScriptInstance.cs
@@ -38,10 +38,11 @@ namespace OpenSim.Region.ScriptEngine.Interfaces
38{ 38{
39 public enum StateSource 39 public enum StateSource
40 { 40 {
41 NewRez = 0, 41 RegionStart = 0,
42 PrimCrossing = 1, 42 NewRez = 1,
43 ScriptedRez = 2, 43 PrimCrossing = 2,
44 AttachedRez = 3 44 ScriptedRez = 3,
45 AttachedRez = 4
45 } 46 }
46 47
47 public interface IScriptWorkItem 48 public interface IScriptWorkItem