mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 06:06:06 +08:00
let scriptEvents flags represent all events we have (so change to 64bit ulong) not the need to keep duplicated definitions on main framework and each script engine, namely because Xengine app domain option
This commit is contained in:
@@ -86,9 +86,9 @@ namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
|
||||
|
||||
private Executor m_Executor = null;
|
||||
|
||||
public int GetStateEventFlags(string state)
|
||||
public ulong GetStateEventFlags(string state)
|
||||
{
|
||||
return (int)m_Executor.GetStateEventFlags(state);
|
||||
return (ulong)m_Executor.GetStateEventFlags(state);
|
||||
}
|
||||
|
||||
[DebuggerNonUserCode]
|
||||
|
||||
Reference in New Issue
Block a user