aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/LuaSL/src/LSL.lua
diff options
context:
space:
mode:
authorDavid Walter Seikel2012-02-23 02:39:50 +1000
committerDavid Walter Seikel2012-02-23 02:39:50 +1000
commit3c86a96e75fb6ab5f7d777996703968e5659db7b (patch)
treeba3dfeea4569ffcef09e9ae7c9b156d8848abe4d /LuaSL/src/LSL.lua
parentImplement llGetSubString(). (diff)
downloadSledjHamr-3c86a96e75fb6ab5f7d777996703968e5659db7b.zip
SledjHamr-3c86a96e75fb6ab5f7d777996703968e5659db7b.tar.gz
SledjHamr-3c86a96e75fb6ab5f7d777996703968e5659db7b.tar.bz2
SledjHamr-3c86a96e75fb6ab5f7d777996703968e5659db7b.tar.xz
Implement llSleep(), and wait a bit longer for the test, now that it's sleeping properly.
Diffstat (limited to 'LuaSL/src/LSL.lua')
-rw-r--r--LuaSL/src/LSL.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/LuaSL/src/LSL.lua b/LuaSL/src/LSL.lua
index 216f0a7..de7f956 100644
--- a/LuaSL/src/LSL.lua
+++ b/LuaSL/src/LSL.lua
@@ -438,7 +438,7 @@ newFunc("", "llSetColor", "vector colour", "integer side")
438newFunc("float", "llGetTime") 438newFunc("float", "llGetTime")
439newFunc("", "llResetTime") 439newFunc("", "llResetTime")
440newFunc("", "llSetTimerEvent", "float seconds") 440newFunc("", "llSetTimerEvent", "float seconds")
441newFunc("", "llSleep", "float seconds") 441newFunc("float", "llSleep", "float seconds") -- Faked return type, it actually does not return anything. This forces it to wait. Actually fully implements llSleep(). B-)
442 442
443 443
444-- TODO - fake this for now. 444-- TODO - fake this for now.