mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
Дополнительные аргументы для loop
This commit is contained in:
parent
2c455a9266
commit
2d98372832
3 changed files with 6 additions and 6 deletions
|
@ -25,9 +25,9 @@ class Loop extends Command {
|
|||
|
||||
const type = args[0];
|
||||
let mode = null;
|
||||
if (type === "queue") {
|
||||
if (type === "queue" || type === "all") {
|
||||
mode = this.client.player.setRepeatMode(message, 2);
|
||||
} else if (type === "song") {
|
||||
} else if (type === "song" || type === "single") {
|
||||
mode = this.client.player.setRepeatMode(message, 1);
|
||||
} else {
|
||||
mode = this.client.player.setRepeatMode(message, 0);
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"DESCRIPTION": "Включить или отключить повтор очереди/одного трека!",
|
||||
"USAGE": "{{prefix}}loop (song/queue)",
|
||||
"EXAMPLES": "{{prefix}}loop queue\n{{prefix}}loop",
|
||||
"USAGE": "{{prefix}}loop (queue/all/song/single)",
|
||||
"EXAMPLES": "{{prefix}}loop queue\n{{prefix}}loop single",
|
||||
"QUEUE": "Повтор очереди **включён**!",
|
||||
"SONG": "Повтор текущего трека **включён**!",
|
||||
"DISABLED": "Повтор **отключён**!"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"DESCRIPTION": "Включить или отключить повтор очереди/одного трека!",
|
||||
"USAGE": "{{prefix}}loop (song/queue)",
|
||||
"EXAMPLES": "{{prefix}}loop queue\n{{prefix}}loop",
|
||||
"USAGE": "{{prefix}}loop (queue/all/song/single)",
|
||||
"EXAMPLES": "{{prefix}}loop queue\n{{prefix}}loop single",
|
||||
"QUEUE": "Повтор очереди **включён**!",
|
||||
"SONG": "Повтор текущего трека **включён**!",
|
||||
"DISABLED": "Повтор **отключён**!"
|
||||
|
|
Loading…
Reference in a new issue