mirror of
https://github.com/eRgo35/lyra.git
synced 2026-02-04 12:26:10 +01:00
0.5.0 embed, help, refractor
This commit is contained in:
@@ -1,7 +1,17 @@
|
||||
use crate::{Context, Error};
|
||||
use crate::{commands::embeds::{error_embed, embed}, Context, Error};
|
||||
use poise::CreateReply;
|
||||
|
||||
#[poise::command(prefix_command, slash_command)]
|
||||
pub async fn stop(ctx: Context<'_>) -> Result<(), Error> {
|
||||
/// Stops playback and destroys the queue; \
|
||||
/// aliases: stop, end
|
||||
#[poise::command(
|
||||
prefix_command,
|
||||
slash_command,
|
||||
aliases("end"),
|
||||
category = "Music"
|
||||
)]
|
||||
pub async fn stop(
|
||||
ctx: Context<'_>
|
||||
) -> Result<(), Error> {
|
||||
let guild_id = ctx.guild_id().unwrap();
|
||||
|
||||
let manager = songbird::get(&ctx.serenity_context())
|
||||
@@ -14,9 +24,14 @@ pub async fn stop(ctx: Context<'_>) -> Result<(), Error> {
|
||||
let queue = handler.queue();
|
||||
queue.stop();
|
||||
|
||||
ctx.say("Playback stopped!").await?;
|
||||
} else {
|
||||
ctx.say("Not in a voice channel!").await?;
|
||||
ctx.send(
|
||||
CreateReply::default().embed(embed(ctx, "Stopped!", "Playback stopped!", "Queue destroyed! Bot will stay and chill with you in a vc").await.unwrap())
|
||||
).await?;
|
||||
} else {
|
||||
let msg = "I am not in a voice channel!";
|
||||
ctx.send(
|
||||
CreateReply::default().embed(error_embed(ctx, msg).await.unwrap())
|
||||
).await?;
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
||||
Reference in New Issue
Block a user