From 99092076717670fd02fcb8162ba3c629c2faa2c2 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Tue, 18 Feb 2020 19:31:33 +0100 Subject: [PATCH] fixed a typo --- commands/utility/color.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/utility/color.js b/commands/utility/color.js index 26b661cd..3dab5c40 100644 --- a/commands/utility/color.js +++ b/commands/utility/color.js @@ -71,7 +71,7 @@ class colorCommand extends Command { message.guild.member(message.author).roles.add(role); return message.channel.send('Role added!'); } else { - return message.channel.send(`${args.color} is not a valide color`); + return message.channel.send(`${args.color} is not a valid color`); } } }