From 5360b64fe016591e8b3652e2fcf5f5abf9923944 Mon Sep 17 00:00:00 2001 From: Matthieu Grieger Date: Wed, 24 Sep 2014 16:34:32 -0700 Subject: [PATCH] Fixed get_length() call --- mumbledj/mumbledj.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mumbledj/mumbledj.lua b/mumbledj/mumbledj.lua index a2d9336..69053d8 100644 --- a/mumbledj/mumbledj.lua +++ b/mumbledj/mumbledj.lua @@ -49,7 +49,7 @@ function parse_command(message) if config.OUTPUT then print(message.user.name .. " has told the bot to start playing music.") end - if song_queue.getLength() == 0 then + if song_queue.get_length() == 0 then message.user:send(config.NO_SONGS_AVAILABLE) else if piepan.Audio.isPlaying() then