From 46f5d55b6b498d2324a2ebd805bfb6da1504e9b8 Mon Sep 17 00:00:00 2001 From: CramMK Date: Mon, 8 Jun 2020 13:39:29 +0200 Subject: [PATCH] Add emoji to music bot --- cogs/music.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cogs/music.py b/cogs/music.py index 57b7733..32c9936 100644 --- a/cogs/music.py +++ b/cogs/music.py @@ -298,6 +298,7 @@ class Music(commands.Cog): return ctx.voice_state.voice = await destination.connect() + await ctx.message.add_reaction('🤙') @commands.command(name="leave", aliases=["dc"]) async def leave(self, ctx: commands.Context): @@ -309,6 +310,7 @@ class Music(commands.Cog): await ctx.voice_state.stop() del self.voice_states[ctx.guild.id] + await ctx.message.add_reaction('👋') @commands.command(name="now", aliases=["np"]) async def now(self, ctx: commands.Context):