From 9fa8b5946d069b591789addc97fe7e59bed171e2 Mon Sep 17 00:00:00 2001 From: mint Date: Thu, 6 May 2021 00:13:16 -0400 Subject: [PATCH] added corresponding ends to functions and ifs --- neodj.lua | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/neodj.lua b/neodj.lua index 4415699..ed771b0 100644 --- a/neodj.lua +++ b/neodj.lua @@ -4,7 +4,7 @@ local backgroundColor = colors.black function playDisk() disk.playAudio() - +end if disk.isPresent() and disk.hasAudio() then playDisk() @@ -12,4 +12,5 @@ elseif disk.isPresent() then print "Not a music disc" else print "No disc" +end