mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +05:00
Фиксики
This commit is contained in:
parent
29a89d59c9
commit
6964ec9e47
3 changed files with 21 additions and 27 deletions
|
@ -25,13 +25,11 @@ class Playlists extends Command {
|
|||
let playlist;
|
||||
|
||||
for (const pl of playlists) {
|
||||
if (pl.name === name) {
|
||||
playlist = pl;
|
||||
} else {
|
||||
message.error("music/removeplaylist:NOT_FOUND", {
|
||||
name
|
||||
});
|
||||
}
|
||||
if (!pl.name === name) return message.error("music/removeplaylist:NOT_FOUND", {
|
||||
name
|
||||
});
|
||||
|
||||
playlist = pl;
|
||||
}
|
||||
|
||||
const embed = new Discord.MessageEmbed()
|
||||
|
|
|
@ -23,13 +23,11 @@ class PlayPlaylists extends Command {
|
|||
const name = args.join(" ");
|
||||
let playlist;
|
||||
for (const pl of data.userData.playlists) {
|
||||
if (pl.name === name) {
|
||||
playlist = new DisTube.Playlist(pl);
|
||||
} else {
|
||||
return message.error("music/removeplaylist:NOT_FOUND", {
|
||||
name
|
||||
});
|
||||
}
|
||||
if (!pl.name === name) return message.error("music/removeplaylist:NOT_FOUND", {
|
||||
name
|
||||
});
|
||||
|
||||
playlist = new DisTube.Playlist(pl);
|
||||
}
|
||||
|
||||
if (!voice) return message.error("music/play:NO_VOICE_CHANNEL");
|
||||
|
|
|
@ -22,21 +22,19 @@ class RemovePlaylist extends Command {
|
|||
|
||||
const playlists = data.userData.playlists;
|
||||
for (const playlist of playlists) {
|
||||
if (playlist.name === name) {
|
||||
const index = playlists.indexOf(playlist);
|
||||
playlists.splice(index, 1);
|
||||
if (!playlist.name === name) return message.error("music/removeplaylist:NOT_FOUND", {
|
||||
name
|
||||
});
|
||||
|
||||
data.userData.markModified("playlists");
|
||||
data.userData.save();
|
||||
const index = playlists.indexOf(playlist);
|
||||
playlists.splice(index, 1);
|
||||
|
||||
message.success("music/removeplaylist:REMOVED", {
|
||||
name
|
||||
});
|
||||
} else {
|
||||
message.error("music/removeplaylist:NOT_FOUND", {
|
||||
name
|
||||
});
|
||||
}
|
||||
data.userData.markModified("playlists");
|
||||
data.userData.save();
|
||||
|
||||
message.success("music/removeplaylist:REMOVED", {
|
||||
name
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue