We want to make sure it's an actual command, not someone '...'-ing.

This commit is contained in:
chris062689 2017-09-30 11:47:59 -04:00
parent 7506f0f287
commit bd413efbfb
1 changed files with 2 additions and 1 deletions

View File

@ -66,7 +66,8 @@ client.on('message', message => {
logger.verbose(`${message.author.username} ${message.author} [Channel: ${message.channel.name} ${message.channel}]: ${message.content}`); logger.verbose(`${message.author.username} ${message.author} [Channel: ${message.channel.name} ${message.channel}]: ${message.content}`);
if (message.content.startsWith('.')) { // We want to make sure it's an actual command, not someone '...'-ing.
if (message.content.startsWith('.') && message.content.startsWith('..') === false) {
let cmd = message.content.split(' ')[0].slice(1); let cmd = message.content.split(' ')[0].slice(1);
// Check by the name of the command. // Check by the name of the command.