diff options
author | Tedd Hansen | 2008-02-20 17:35:28 +0000 |
---|---|---|
committer | Tedd Hansen | 2008-02-20 17:35:28 +0000 |
commit | 416d75282900ebd4af5434a95f70765f078a5b69 (patch) | |
tree | 356f78522da99f38ae25c5e0f9c32ee9cfaf2bb7 /OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |
parent | * Report 'asset not found' situations back to UserTextureDownloadService (diff) | |
download | opensim-SC-416d75282900ebd4af5434a95f70765f078a5b69.zip opensim-SC-416d75282900ebd4af5434a95f70765f078a5b69.tar.gz opensim-SC-416d75282900ebd4af5434a95f70765f078a5b69.tar.bz2 opensim-SC-416d75282900ebd4af5434a95f70765f078a5b69.tar.xz |
llSetTimerEvent updated to use ticks instead of DateTime for internal timing.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs index c14a74f..1ab2a43 100644 --- a/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs +++ b/OpenSim/Region/ScriptEngine/Common/LSL_BuiltIn_Commands.cs | |||
@@ -1244,7 +1244,7 @@ namespace OpenSim.Region.ScriptEngine.Common | |||
1244 | { | 1244 | { |
1245 | m_host.AddScriptLPS(1); | 1245 | m_host.AddScriptLPS(1); |
1246 | // Setting timer repeat | 1246 | // Setting timer repeat |
1247 | m_ScriptEngine.m_ASYNCLSLCommandManager.SetTimerEvent(m_localID, m_itemID, sec / 1000); | 1247 | m_ScriptEngine.m_ASYNCLSLCommandManager.SetTimerEvent(m_localID, m_itemID, sec); |
1248 | } | 1248 | } |
1249 | 1249 | ||
1250 | public void llSleep(double sec) | 1250 | public void llSleep(double sec) |