Updated Executing own logic (markdown)

Robert Jelic
2022-05-28 06:56:33 +02:00
parent 8ff55c95a0
commit ce662495c6

@@ -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