40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
import discord
|
|
import datetime
|
|
from discord import app_commands
|
|
from discord.ext import commands
|
|
from cogs.music import Music
|
|
|
|
from utils.config import create_embed
|
|
|
|
|
|
class Stop(commands.Cog):
|
|
def __init__(self, bot):
|
|
self.bot = bot
|
|
|
|
@app_commands.command()
|
|
@app_commands.check(Music.create_player)
|
|
async def stop(self, interaction: discord.Interaction):
|
|
"Disconnects the bot from the voice channel and clears the queue"
|
|
player = self.bot.lavalink.player_manager.get(interaction.guild.id)
|
|
|
|
try:
|
|
self.bot.autoplay.remove(interaction.guild.id)
|
|
except ValueError:
|
|
pass
|
|
player.queue.clear()
|
|
await player.stop()
|
|
await interaction.guild.voice_client.disconnect(force=True)
|
|
|
|
embed = create_embed(
|
|
title="Queue Cleared and Music Stopped",
|
|
description=(
|
|
f"Thank you for using {self.bot.me.mention}\n\n"
|
|
f"Issued by: {interaction.user.mention}"
|
|
),
|
|
)
|
|
await interaction.response.send_message(embed=embed)
|
|
|
|
|
|
async def setup(bot):
|
|
await bot.add_cog(Stop(bot))
|