From 3e5a48027ca14c3ee744a1562498c9d94008a5e9 Mon Sep 17 00:00:00 2001 From: Terry Geng Date: Wed, 26 Feb 2020 18:10:04 +0800 Subject: [PATCH] feat: \!play will set is_pause to False if the queue is empty #77 --- command.py | 1 + 1 file changed, 1 insertion(+) diff --git a/command.py b/command.py index a46ad02..d8d98bb 100644 --- a/command.py +++ b/command.py @@ -121,6 +121,7 @@ def cmd_play(bot, user, text, command, parameter): else: bot.send_msg(util.format_current_playing(), text) else: + bot.is_pause = False bot.send_msg(constants.strings('queue_empty'), text)