added corresponding ends to functions and ifs

This commit is contained in:
mint 2021-05-06 00:13:16 -04:00
parent bc4c7aaefe
commit 9fa8b5946d
1 changed files with 2 additions and 1 deletions

View File

@ -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