mirror of
https://github.com/musix-org/musix-oss
synced 2024-12-23 03:33:17 +00:00
Update index.js
This commit is contained in:
parent
2ee9414b90
commit
0e39d7f210
10
index.js
10
index.js
@ -35,8 +35,6 @@ client.on('message', async msg => {
|
|||||||
.setColor('#b50002')
|
.setColor('#b50002')
|
||||||
channelms.send(embed)
|
channelms.send(embed)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if (msg.content === `${PREFIX}ping`) {
|
if (msg.content === `${PREFIX}ping`) {
|
||||||
msg.channel.send(`My current Ping: **${Math.floor(client.ping * 10) / 10} ms**.`)
|
msg.channel.send(`My current Ping: **${Math.floor(client.ping * 10) / 10} ms**.`)
|
||||||
return;
|
return;
|
||||||
@ -89,7 +87,7 @@ client.on('message', async msg => {
|
|||||||
let command = msg.content.toLowerCase().split(' ')[0];
|
let command = msg.content.toLowerCase().split(' ')[0];
|
||||||
command = command.slice(PREFIX.length)
|
command = command.slice(PREFIX.length)
|
||||||
|
|
||||||
if (command === 'play') {
|
if (command === 'play' || command === 'p') {
|
||||||
if (!args[1]) return msg.channel.send(':x: I\'m sorry but you didn\'t specify a song');
|
if (!args[1]) return msg.channel.send(':x: I\'m sorry but you didn\'t specify a song');
|
||||||
const voiceChannel = msg.member.voiceChannel;
|
const voiceChannel = msg.member.voiceChannel;
|
||||||
if (!voiceChannel) return msg.channel.send(':x: I\'m sorry but you need to be in a voice channel to play music!');
|
if (!voiceChannel) return msg.channel.send(':x: I\'m sorry but you need to be in a voice channel to play music!');
|
||||||
@ -137,7 +135,7 @@ Please provide a value to select one of the search results ranging from __1-10__
|
|||||||
}
|
}
|
||||||
return handleVideo(video, msg, voiceChannel);
|
return handleVideo(video, msg, voiceChannel);
|
||||||
}
|
}
|
||||||
} else if (command === 'skip') {
|
} else if (command === 'skip' || command === 's') {
|
||||||
if (!msg.member.voiceChannel) return msg.channel.send(':x: You are not in a voice channel!');
|
if (!msg.member.voiceChannel) return msg.channel.send(':x: You are not in a voice channel!');
|
||||||
if (!serverQueue) return msg.channel.send(':x: There is nothing playing that I could skip for you.');
|
if (!serverQueue) return msg.channel.send(':x: There is nothing playing that I could skip for you.');
|
||||||
if (!serverQueue.songs[1]) return msg.channel.send(':x: Theres nothing to skip to!')
|
if (!serverQueue.songs[1]) return msg.channel.send(':x: Theres nothing to skip to!')
|
||||||
@ -212,7 +210,7 @@ ${serverQueue.songs.map(song => `**-** ${song.title}`).join("\n")}
|
|||||||
let command = msg.content.toLowerCase().split(' ')[0];
|
let command = msg.content.toLowerCase().split(' ')[0];
|
||||||
command = command.slice(PREFIX.length)
|
command = command.slice(PREFIX.length)
|
||||||
|
|
||||||
if (command === 'play') {
|
if (command === 'play' || command === 'p') {
|
||||||
if (!args[1]) return msg.channel.send(':x: I think you forgot what you wanted to play!');
|
if (!args[1]) return msg.channel.send(':x: I think you forgot what you wanted to play!');
|
||||||
const voiceChannel = msg.member.voiceChannel;
|
const voiceChannel = msg.member.voiceChannel;
|
||||||
if (!voiceChannel) return msg.channel.send(':x: I\'m sorry but you need to be in a voice channel to play music!');
|
if (!voiceChannel) return msg.channel.send(':x: I\'m sorry but you need to be in a voice channel to play music!');
|
||||||
@ -263,7 +261,7 @@ Please provide a value to select one of the search results ranging from 1-10.
|
|||||||
}
|
}
|
||||||
return handleVideo(video, msg, voiceChannel);
|
return handleVideo(video, msg, voiceChannel);
|
||||||
}
|
}
|
||||||
} else if (command === 'skip') {
|
} else if (command === 'skip' || command === 's') {
|
||||||
if (!msg.member.voiceChannel) return msg.channel.send(':x: You are not in a voice channel!');
|
if (!msg.member.voiceChannel) return msg.channel.send(':x: You are not in a voice channel!');
|
||||||
if (!serverQueue) return msg.channel.send(':x: There is nothing playing that I could skip for you.');
|
if (!serverQueue) return msg.channel.send(':x: There is nothing playing that I could skip for you.');
|
||||||
msg.channel.send('Skipped :thumbsup:')
|
msg.channel.send('Skipped :thumbsup:')
|
||||||
|
Loading…
Reference in New Issue
Block a user