From 56f63873d20036299f313bc6a2d59cc38179b456 Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 2 Jan 2019 20:47:20 +0100 Subject: [PATCH] Change shuffle icon --- discordbot.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/discordbot.py b/discordbot.py index 958dbc26..238d91cf 100644 --- a/discordbot.py +++ b/discordbot.py @@ -928,6 +928,7 @@ class RoyalDiscordBot(discord.Client): if self.radio_messages_next_in <= 0: radio_message = random.sample(self.radio_messages, 1)[0] # pycharm are you drunk + # noinspection PyAttributeOutsideInit self.radio_messages_next_in = self.radio_messages_every await self.add_video_from_url(radio_message) await channel.send(f"📻 Aggiunto un messaggio radio, disattiva con `!radiomessages off`.") @@ -1086,7 +1087,7 @@ class RoyalDiscordBot(discord.Client): return logger.info(f"The queue was shuffled by {author.name}#{author.discriminator}.") self.video_queue.shuffle() - await channel.send("♠️ ♦️ ♣️ ♥️ Shuffle completo!") + await channel.send("🔀 Shuffle completo!") @command @requires_connected_voice_client