Add emoji to music bot

This commit is contained in:
CramMK
2020-06-08 13:39:29 +02:00
parent dfc075d5a0
commit 46f5d55b6b

View File

@@ -298,6 +298,7 @@ class Music(commands.Cog):
return return
ctx.voice_state.voice = await destination.connect() ctx.voice_state.voice = await destination.connect()
await ctx.message.add_reaction('🤙')
@commands.command(name="leave", aliases=["dc"]) @commands.command(name="leave", aliases=["dc"])
async def leave(self, ctx: commands.Context): async def leave(self, ctx: commands.Context):
@@ -309,6 +310,7 @@ class Music(commands.Cog):
await ctx.voice_state.stop() await ctx.voice_state.stop()
del self.voice_states[ctx.guild.id] del self.voice_states[ctx.guild.id]
await ctx.message.add_reaction('👋')
@commands.command(name="now", aliases=["np"]) @commands.command(name="now", aliases=["np"])
async def now(self, ctx: commands.Context): async def now(self, ctx: commands.Context):