From 0595761566f9eb44556ffbe720af4bf3bda68db9 Mon Sep 17 00:00:00 2001 From: mint Date: Thu, 6 May 2021 00:57:47 -0400 Subject: [PATCH] made the playing function print the song name :3 --- neodj.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/neodj.lua b/neodj.lua index ca46c22..c60a1af 100644 --- a/neodj.lua +++ b/neodj.lua @@ -21,12 +21,15 @@ end function playDisc() disk.playAudio(drive) + print(disk.getAudioTitle(drive)) end function ejectDisc() + disk.eject() end function stopDisc() + disk.stopAudio() end if disk.isPresent(drive) and disk.hasAudio(drive) then