prefix thing #1

Merged
oat merged 1 commits from wint0r/foggy:prefix into main 2021-10-21 08:02:54 +02:00
1 changed files with 1 additions and 1 deletions

View File

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