People can't leave their hands ooff "well enough". StateSource 0 was region

start, and they started at 1 for real values. Whoever changed that enum
to start at 0 should bow their head in shame. They broke the region start
event. This puts it right again. Meow!
prebuild-update
Melanie 2010-08-06 15:05:35 +01:00
parent f809797d62
commit c1ad8a3c17
1 changed files with 5 additions and 4 deletions

View File

@ -38,10 +38,11 @@ namespace OpenSim.Region.ScriptEngine.Interfaces
{
public enum StateSource
{
NewRez = 0,
PrimCrossing = 1,
ScriptedRez = 2,
AttachedRez = 3
RegionStart = 0,
NewRez = 1,
PrimCrossing = 2,
ScriptedRez = 3,
AttachedRez = 4
}
public interface IScriptWorkItem