Skip to content

Commit

Permalink
Update Lyrics.ts
Browse files Browse the repository at this point in the history
Signed-off-by: Charles Giann Marcelo / Naig <[email protected]>
  • Loading branch information
CharlesNaig authored Sep 7, 2024
1 parent 6c70ca6 commit 9c1d2f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/music/Lyrics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default class Lyrics extends Command {
const player = client.queue.get(ctx.guild!.id);
const embed = this.client.embed();

if (!player || !player.isPlaying) {
if (!player && !player.isPlaying) {
return await ctx.sendMessage({
embeds: [embed.setColor(this.client.color.red).setDescription(ctx.locale("cmd.lyrics.errors.no_playing"))],
});
Expand Down

0 comments on commit 9c1d2f2

Please sign in to comment.