diff --git a/commands/moderation/unmute.js b/commands/moderation/unmute.js index 7a4899fd..dc45ec59 100644 --- a/commands/moderation/unmute.js +++ b/commands/moderation/unmute.js @@ -47,6 +47,6 @@ module.exports = { return member.roles.remove(muted) .then(member => message.channel.send(`\\✔️ **${member.user.tag}** has been unmuted!`)) - .catch(() => messafe.channel.send(`\\❌ ${message.author}, I'm unable to unmute **${member.user.tag}**`)); + .catch(() => message.channel.send(`\\❌ ${message.author}, I'm unable to unmute **${member.user.tag}**`)); } };