support waiting for seconds with fractions
parent
23d0b7ae9e
commit
7dd3987bd8
|
@ -110,7 +110,7 @@ function mousemoverel($main, $control, $options)
|
||||||
*/
|
*/
|
||||||
function sleep($main, $control, $options) : bool
|
function sleep($main, $control, $options) : bool
|
||||||
{
|
{
|
||||||
usleep(intval($options['parameter']) * 1000000);
|
usleep(floatval($options['parameter']) * 1000000);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue