diff --git a/Executing-own-logic.md b/Executing-own-logic.md index 6b70459..5e2a38a 100644 --- a/Executing-own-logic.md +++ b/Executing-own-logic.md @@ -16,7 +16,7 @@ local function yourCustomHandler() end end -parallel.waitForAll(basalt.startUpdate, yourCustomHandler) -- here it will handle your function (yourCustomHandler) and basalts handlers at the time +parallel.waitForAll(basalt.autoUpdate, yourCustomHandler) -- here it will handle your function (yourCustomHandler) and basalts handlers at the time ```` You can read [here](http://www.computercraft.info/wiki/Parallel_(API)) what exactly parallel.waitForAll() does