From: Alan Webb (alan_webb@us.ibm.com)
Fix the broken llSetTimerEvent implementation (sec == 0 was not possible anymore).0.6.1-post-fixes
parent
0e21182a09
commit
4b5e09a36b
|
@ -2467,7 +2467,7 @@ namespace OpenSim.Region.ScriptEngine.Shared.Api
|
|||
|
||||
public void llSetTimerEvent(double sec)
|
||||
{
|
||||
if (sec < m_MinTimerInterval)
|
||||
if (sec != 0.0 && sec < m_MinTimerInterval)
|
||||
sec = m_MinTimerInterval;
|
||||
m_host.AddScriptLPS(1);
|
||||
// Setting timer repeat
|
||||
|
|
Loading…
Reference in New Issue