diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/async.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/async.lua b/util/async.lua index 367a75b5..e8f898d9 100644 --- a/util/async.lua +++ b/util/async.lua @@ -85,7 +85,7 @@ local runner_mt = {}; runner_mt.__index = runner_mt; local function runner_create_thread(func, self) - local thread = coroutine.create(function (self) + local thread = coroutine.create(function (self) -- luacheck: ignore 432/self while true do func(coroutine.yield("ready", self)); end |