Merge pull request 'prefix thing' (#1) from skye/foggy:prefix into main

Reviewed-on: #1
This commit is contained in:
Jill 2021-10-21 06:02:54 +00:00
commit f76f42244f
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);