mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
Новый день - новые фиксы
This commit is contained in:
parent
1a648f2541
commit
3d054e04c4
3 changed files with 2 additions and 3 deletions
|
@ -52,7 +52,7 @@ class Queue extends BaseCommand {
|
|||
},
|
||||
{
|
||||
name: interaction.translate("music/queue:QUEUE"),
|
||||
value: tracks.join("\n")
|
||||
value: tracks.length > 0 ? tracks.join("\n") : null
|
||||
},
|
||||
{
|
||||
name: "\u200b",
|
||||
|
|
|
@ -35,7 +35,6 @@ class Skip extends BaseCommand {
|
|||
if (!voice) return interaction.error("music/play:NO_VOICE_CHANNEL");
|
||||
const queue = client.player.getQueue(interaction.guildId);
|
||||
if (!queue) return interaction.error("music/play:NOT_PLAYING");
|
||||
if (!queue.tracks[1]) return interaction.error("music/skip:NO_NEXT_SONG");
|
||||
|
||||
const embed = new EmbedBuilder()
|
||||
.setAuthor({
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
"USAGE": "skipto [номер]",
|
||||
"EXAMPLES": "skipto 3",
|
||||
"POSITION": "Номер трека в очереди",
|
||||
"SUCCESS": "Выполнен переход на позицию {{position}",
|
||||
"SUCCESS": "Выполнен переход на позицию {{position}}",
|
||||
"ERROR": "На позиции {{position}} ничего не найдено",
|
||||
"NO_PREV_SONG": "Вы не можете перейти назад, для этого используйте команду `back`!"
|
||||
}
|
Loading…
Reference in a new issue