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
parent
f809797d62
commit
c1ad8a3c17
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue