diff options
author | Tom | 2010-08-06 06:41:25 -0700 |
---|---|---|
committer | Tom | 2010-08-06 06:41:25 -0700 |
commit | 3ce335c6f865e1b42fbefd44f38f9a2da09ef853 (patch) | |
tree | 64872a9f8b9a089aa9ab90ad66f2d0df6479d1a8 /OpenSim | |
parent | Make sure the avatar position gets moved along with a prim it is sitting on. ... (diff) | |
download | opensim-SC-3ce335c6f865e1b42fbefd44f38f9a2da09ef853.zip opensim-SC-3ce335c6f865e1b42fbefd44f38f9a2da09ef853.tar.gz opensim-SC-3ce335c6f865e1b42fbefd44f38f9a2da09ef853.tar.bz2 opensim-SC-3ce335c6f865e1b42fbefd44f38f9a2da09ef853.tar.xz |
Fix StateSource constants, provide RegionStart
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Interfaces/IScriptInstance.cs | 9 |
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 |