diff options
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs index 5ef9471..a005b01 100644 --- a/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs +++ b/OpenSim/Region/ScriptEngine/Shared/Api/Implementation/LSL_Api.cs | |||
@@ -2756,7 +2756,15 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api | |||
2756 | public void llMinEventDelay(double delay) | 2756 | public void llMinEventDelay(double delay) |
2757 | { | 2757 | { |
2758 | m_host.AddScriptLPS(1); | 2758 | m_host.AddScriptLPS(1); |
2759 | NotImplemented("llMinEventDelay"); | 2759 | try |
2760 | { | ||
2761 | m_ScriptEngine.SetMinEventDelay(m_itemID, delay); | ||
2762 | } | ||
2763 | catch (NotImplementedException) | ||
2764 | { | ||
2765 | // Currently not implemented in DotNetEngine only XEngine | ||
2766 | NotImplemented("llMinEventDelay in DotNetEngine"); | ||
2767 | } | ||
2760 | } | 2768 | } |
2761 | 2769 | ||
2762 | /// <summary> | 2770 | /// <summary> |