From 91d0b5f7be53738a0bacda4e347194035cb2c518 Mon Sep 17 00:00:00 2001 From: Ryan Ward Date: Sun, 19 Dec 2021 01:05:34 -0500 Subject: [PATCH] added some spaces --- README.md | 7 +++---- multi/init.lua | 4 ++++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b0848c7..fbc02f7 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,7 @@ -# Multi Version: 15.1.0 Hold the thread +# Multi Version: 16.0.0 Upgrade Complete **Key Changes** -- thread.hold has been updated to allow all variants to work as well as some new features. Check the changelog or documentation for more info. -- multi:newProccesor() Creates a process that acts like the multi namespace that can be managed independently from the mainloop. -- Connections can be added together +- All objects now use connections internally +- Updated getTasksDetails() to handle the new method of managing threads and processors Found an issue? Please [submit it](https://github.com/rayaman/multi/issues) and someone will look into it! diff --git a/multi/init.lua b/multi/init.lua index d78cf6f..f5bfa3d 100644 --- a/multi/init.lua +++ b/multi/init.lua @@ -394,14 +394,18 @@ function multi:newBase(ins) _tid = _tid + 1 return c end + function multi:newConnector() local c = {Type = "connector"} return c end + local CRef = { Fire = function() end } + local ignoreconn = true + function multi:newConnection(protect,func,kill) local c={} c.callback = func