From 26339c5a3804e0cc4dc663c7089e368cdab5d92d Mon Sep 17 00:00:00 2001 From: mint Date: Fri, 7 May 2021 02:20:04 -0400 Subject: [PATCH] removed mentions of spawn --- rhythmblock.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/rhythmblock.lua b/rhythmblock.lua index 2666f7d..651241e 100644 --- a/rhythmblock.lua +++ b/rhythmblock.lua @@ -143,7 +143,7 @@ status = defaultStatus --Setting the term.clear() while true do term.write(status) - spawn(clickListen) - spawn(touchListen) - spawn(keyListen) + clickListen() + touchListen() + keyListen() end