From 48bba84c084d14b5a961a4160baa3884c3167849 Mon Sep 17 00:00:00 2001 From: Ryan Ward Date: Sun, 13 Feb 2022 00:16:00 -0500 Subject: [PATCH] Fix issue where I forgot to implement the handler for thread.yield --- multi/init.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/multi/init.lua b/multi/init.lua index 43407a2..b7e6ae8 100644 --- a/multi/init.lua +++ b/multi/init.lua @@ -1469,6 +1469,9 @@ local cmds = {-- ipart: t_hold, t_sleep, t_holdF, t_skip, t_holdW, t_yield, t_no th.interval = arg3 or 0 th.intervalR = clock() end, + function(th,arg1,arg2,arg3) + th.task = t_yield + end, function() end } setmetatable(cmds,{__index=function() return function() end end})