Skip to content

Commit

Permalink
feat: add resume alias to pause
Browse files Browse the repository at this point in the history
  • Loading branch information
ayamdobhal committed Nov 25, 2024
1 parent 4fff4ad commit 22859da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/pause.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use songbird::tracks::PlayMode;

use super::utils::{Context, Error};

#[poise::command(prefix_command)]
#[poise::command(prefix_command, aliases("resume"))]
pub async fn pause(ctx: Context<'_>) -> Result<(), Error> {
let (guild_id, channel_id) = {
let guild = ctx.guild().expect("Guild only message");
Expand Down

0 comments on commit 22859da

Please sign in to comment.