mirror of
https://github.com/opensim/opensim.git
synced 2026-08-05 08:55:56 +08:00
An initial implementation of llMinEventDelay in XEngine.
Not implemented yet in DotNetEngine. Fixes Mantis #2830
This commit is contained in:
@@ -2756,7 +2756,15 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
||||
public void llMinEventDelay(double delay)
|
||||
{
|
||||
m_host.AddScriptLPS(1);
|
||||
NotImplemented("llMinEventDelay");
|
||||
try
|
||||
{
|
||||
m_ScriptEngine.SetMinEventDelay(m_itemID, delay);
|
||||
}
|
||||
catch (NotImplementedException)
|
||||
{
|
||||
// Currently not implemented in DotNetEngine only XEngine
|
||||
NotImplemented("llMinEventDelay in DotNetEngine");
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user