literally just a period

This commit is contained in:
Carol Knieriem 2020-01-08 09:49:34 -05:00
parent 8856c6c17c
commit ef07388cac
No known key found for this signature in database
GPG Key ID: 932EC6A6BAEE122B
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ module.exports = async (client, message) => {
const prefixMention = new RegExp(`^<@!?${client.user.id}>( |)$`);
if (message.content.match(prefixMention)) {
return message.reply(`my prefix for this guild is \`${settings.prefix}\``);
return message.reply(`my prefix for this guild is \`${settings.prefix}\`.`);
}
if (message.content.indexOf(settings.prefix) !== 0) return;