From 091c0d0c133ac1397907ce39f403434c102b1d04 Mon Sep 17 00:00:00 2001 From: LDDestroier Date: Thu, 2 May 2019 00:35:01 -0400 Subject: [PATCH] Fixed simultaneous messages ...probably --- disknet.lua | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/disknet.lua b/disknet.lua index 16812eb..4499835 100644 --- a/disknet.lua +++ b/disknet.lua @@ -156,7 +156,7 @@ disknet.receive = function(channel) local output, contents local doRewrite = false - + local look = 1 while true do loadFList() for i = 1, #fList do @@ -164,14 +164,18 @@ disknet.receive = function(channel) if contents ~= "" then contents = textutils.unserialize(contents) if type(contents) == "table" then - if contents[1] then - if (not output) and (contents[1].uniqueID ~= uniqueID) and (not msgCheckList[contents[1].messageID]) then - if getTime() - (contents[1].time or 0) <= 0.01 then - msgCheckList[contents[1].messageID] = true - output = {} - for k,v in pairs(contents[1]) do - output[k] = v + if contents[look] then + if not output then + if (contents[look].uniqueID ~= uniqueID) and (not msgCheckList[contents[1].messageID]) then + if getTime() - (contents[look].time or 0) <= 0.01 then + msgCheckList[contents[look].messageID] = true + output = {} + for k,v in pairs(contents[look]) do + output[k] = v + end end + else + look = math.min(look + 1, #contents) end end doRewrite = false