prefix thing #1

Merged
oat merged 1 commit from wint0r/foggy:prefix into main 2021-10-21 08:02:54 +02:00

View file

@ -192,7 +192,7 @@ bot.on('messageCreate', async (msg) => {
const params = content.replace(prefix, '').split(' '); const params = content.replace(prefix, '').split(' ');
const cmd = params[0]; const cmd = params[0];
if (!msg.guild) return; if (!msg.guild || !content.startsWith(prefix)) return;
if ((cmd === 'play' || cmd === 'p') && params[1]) { if ((cmd === 'play' || cmd === 'p') && params[1]) {
const connection = await checkVoiceChannel(msg); const connection = await checkVoiceChannel(msg);