diff --git a/TheGodfather/Modules/Music/MusicModule.Queue.cs b/TheGodfather/Modules/Music/MusicModule.Queue.cs index 2ec4c0bf..a0a79e7a 100644 --- a/TheGodfather/Modules/Music/MusicModule.Queue.cs +++ b/TheGodfather/Modules/Music/MusicModule.Queue.cs @@ -58,7 +58,7 @@ public Task ClearAsync(CommandContext ctx) { int removed = this.Player.EmptyQueue(); if (removed == 0) - throw new CommandFailedException(ctx); + throw new CommandFailedException(ctx, TranslationKey.str_music_queue_none); return ctx.InfoAsync(this.ModuleColor, Emojis.Headphones, TranslationKey.fmt_music_del_many(removed)); }