From ba1853d782be439a9558a89fb46139404b13ea13 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Mon, 3 May 2021 13:12:17 -0500 Subject: [PATCH] More debugging. --- minehost.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/minehost.lua b/minehost.lua index fc55934..760572c 100644 --- a/minehost.lua +++ b/minehost.lua @@ -27,6 +27,8 @@ local FAILED = "failed" running = true local modem = peripheral.find("modem") + + print("Checking for modem.") if (modem == nil) then error("Modem not found.") @@ -119,6 +121,7 @@ local function listenToMiners() end printPrompt() end + print("No longer listening to miners.") end parallel.waitForAll(listenToMiners, listenForCommands) \ No newline at end of file