sleep became _sleep.

This commit is contained in:
Diego Nehab 2001-06-08 22:41:15 +00:00
parent 6fb33f0a76
commit bf4ca59463

View File

@ -80,7 +80,7 @@ function execute_command(cmd, par)
send_command(SYNC) send_command(SYNC)
elseif cmd == SLEEP then elseif cmd == SLEEP then
print("server: sleeping for " .. par .. " seconds...") print("server: sleeping for " .. par .. " seconds...")
sleep(par) _sleep(par)
print("server: woke up!") print("server: woke up!")
end end
end end