Allowed reopen for non named threads

This commit is contained in:
Cooldude2606
2018-05-14 20:25:23 +01:00
parent 33eab7334b
commit 0d3e1b90f6

View File

@@ -294,9 +294,11 @@ function Server._thread:close()
end
end)
end
if is_type(self.name,'string') then threads.paused[self.name]=self.uuid self.opened=nil
if self.reopen == true then self:open() end
else threads.all[uuid] = nil threads.all._n = threads.all._n-1 end
self.opened=nil
if self.reopen == true then self:open() else
if is_type(self.name,'string') then threads.paused[self.name]=self.uuid
else threads.all[uuid] = nil threads.all._n = threads.all._n-1 end
end
return _return
end