llSetTimerEvent updated to use ticks instead of DateTime for internal timing.

This commit is contained in:
Tedd Hansen
2008-02-20 17:35:28 +00:00
parent 877713999c
commit 416d752829
3 changed files with 41 additions and 24 deletions

View File

@@ -1244,7 +1244,7 @@ namespace OpenSim.Region.ScriptEngine.Common
{
m_host.AddScriptLPS(1);
// Setting timer repeat
m_ScriptEngine.m_ASYNCLSLCommandManager.SetTimerEvent(m_localID, m_itemID, sec / 1000);
m_ScriptEngine.m_ASYNCLSLCommandManager.SetTimerEvent(m_localID, m_itemID, sec);
}
public void llSleep(double sec)