An initial implementation of llMinEventDelay in XEngine.

Not implemented yet in DotNetEngine.
Fixes Mantis #2830
This commit is contained in:
idb
2008-12-21 19:04:06 +00:00
parent 7d837a9bea
commit 3fe966d6b3
7 changed files with 71 additions and 2 deletions

View File

@@ -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>