From ec1e770eeefc7e62937ee9b7af4a9e94ba1b9492 Mon Sep 17 00:00:00 2001 From: Bruh moment Date: Sun, 2 Feb 2020 17:37:57 +0000 Subject: [PATCH] Update banword.js --- commands/admin/banword.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/admin/banword.js b/commands/admin/banword.js index ade4436..15aa9ed 100644 --- a/commands/admin/banword.js +++ b/commands/admin/banword.js @@ -37,7 +37,7 @@ class BannedWordsCommand extends Command { async exec(message, args) { if (args.removeall) { BannedWords.destroy({where: {serverID: message.guild.id}}); - return message.channel.send('The banned word have been reset.'); + return message.channel.send('The banned words have been reset.'); } if (!args.word) return message.channel.send('Please specify a word to ban!'); @@ -48,7 +48,7 @@ class BannedWordsCommand extends Command { if (!bannedWords) { const body = {word: args.word.toLowerCase(), serverID: message.guild.id}; await BannedWords.create(body); - return message.channel.send(`The word ${args.word.toLowerCase()} have been banned`); + return message.channel.send(`The word ${args.word.toLowerCase()} has been banned`); } else if (args.remove && bannedWords) { BannedWords.destroy({where: {word: args.word.toLowerCase(), serverID: message.guild.id}}); return message.channel.send(`The word ${args.word.toLowerCase()} is no longer banned`);