From ce662495c60b8988f615ca19d221e7fe91e97fcb Mon Sep 17 00:00:00 2001 From: Robert Jelic <36573031+NoryiE@users.noreply.github.com> Date: Sat, 28 May 2022 06:56:33 +0200 Subject: [PATCH] Updated Executing own logic (markdown) --- Executing-own-logic.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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