From c8806be02da5fa230a0b79c468817d802a14a863 Mon Sep 17 00:00:00 2001 From: Jacob Babor Date: Mon, 26 Feb 2024 00:24:40 -0600 Subject: [PATCH] Remove sleep from loop func This solves all our rednet issues, seemingly --- storage-net/common.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/storage-net/common.lua b/storage-net/common.lua index c3b9e1e..05f8422 100644 --- a/storage-net/common.lua +++ b/storage-net/common.lua @@ -29,7 +29,6 @@ function c_mainLoop(loopfunc) -- Loops a thing forever while true do loopfunc() - sleep(0.10) end end function c_waitForMessage()