diff options
author | sacha | 2010-08-06 14:39:34 +0000 |
---|---|---|
committer | sacha | 2010-08-06 14:39:34 +0000 |
commit | 23d1f0978ec4db9f49e52a5615423f6323eac5fc (patch) | |
tree | 5239d1a4edf122f93f945360025047f5989c8a87 /OpenSim/Region/ScriptEngine/Interfaces | |
parent | Allowing the expected purge trash folder... (diff) | |
parent | Fix StateSource constants, provide RegionStart (diff) | |
download | opensim-SC-23d1f0978ec4db9f49e52a5615423f6323eac5fc.zip opensim-SC-23d1f0978ec4db9f49e52a5615423f6323eac5fc.tar.gz opensim-SC-23d1f0978ec4db9f49e52a5615423f6323eac5fc.tar.bz2 opensim-SC-23d1f0978ec4db9f49e52a5615423f6323eac5fc.tar.xz |
Merge branch 'careminster-presence-refactor' of ssh://3dhosting.de/var/git/careminster into careminster-presence-refactor
Diffstat (limited to 'OpenSim/Region/ScriptEngine/Interfaces')
-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 |