First my code on the receiving side:
local component = require("component")
local event = require("event")
local m = component.modem
m.open(1)
print(m.isOpen(1))
while true do
local _, _, from, port, _, message = event.pull("modem_message")
os.sleep(1)
if message ~= "" then
print("message")
end
end
My problem is, I'm sending one broadcast ("Test") and a second later I'm sending a direct message ("Test2").
The receiving server then prints out the broadcast nearly 8 times before the direct message gets repeated 6 times. From Google I know that this shouldn't be, but I can