From 9b14538fe4577f9537a1eb2b884123cbcffe78e2 Mon Sep 17 00:00:00 2001
From: loicbersier <loic.bersier1@gmail.com>
Date: Mon, 24 Feb 2020 14:34:04 +0100
Subject: [PATCH] updated description

---
 commands/admin/whitelistword.js | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/commands/admin/whitelistword.js b/commands/admin/whitelistword.js
index 83cdca4..441b063 100644
--- a/commands/admin/whitelistword.js
+++ b/commands/admin/whitelistword.js
@@ -4,7 +4,7 @@ const whitelistWord = require('../../models').whitelistWord;
 class whitelistWordCommand extends Command {
 	constructor() {
 		super('whitelistWord', {
-			aliases: ['whitelistWord'],
+			aliases: ['whitelistWord', 'unwhitelistword'],
 			category: 'admin',
 			userPermissions: ['MANAGE_MESSAGES'],
 			clientPermissions: ['MANAGE_MESSAGES', 'SEND_MESSAGES'],
@@ -27,9 +27,9 @@ class whitelistWordCommand extends Command {
 			],
 			channelRestriction: 'guild',
 			description: {
-				content: 'Ban word on the server. use the unbanword alias to delete a banned word, unbanword alias and --removeaall to remove every banned word',
-				usage: '[word to ban]',
-				examples: ['owo']
+				content: 'Whitelist word so it is not affected by the banned word, unwhitelistword alias and --removeaall to remove every banned whitelisted word',
+				usage: '[word to whitelist]',
+				examples: ['sexuality']
 			}
 		});
 	}
@@ -39,7 +39,7 @@ class whitelistWordCommand extends Command {
 		args.word = args.word.replace(/[\u0250-\ue007]/g, '');
 		const WhitelistWord = await whitelistWord.findOne({where: {word: args.word.toLowerCase(), serverID: message.guild.id}});
 
-		if (message.util.parsed.alias == 'unbanword') {
+		if (message.util.parsed.alias == 'unwhitelistword') {
 			if (args.removeall) {
 				whitelistWord.destroy({where: {serverID: message.guild.id}});
 				return message.channel.send('The whitelisted words has been reset.');