diff --git a/src/test/server-files/computers/computer/13/startup.lua b/src/test/server-files/computers/computer/13/startup.lua index 8c786ff4b..e8954964f 100644 --- a/src/test/server-files/computers/computer/13/startup.lua +++ b/src/test/server-files/computers/computer/13/startup.lua @@ -2,11 +2,11 @@ rednet.open("top") -rednet.send(14, "Test msg") - local id, msg repeat - id, msg = rednet.receive() + rednet.send(14, "Test msg") -- Keep sending, as other computer may not have started yet. + + id, msg = rednet.receive(nil, 1) print(id, msg) until id == 14