From ece0657fbd44954e0f5dc997c874b33348c35695 Mon Sep 17 00:00:00 2001 From: Sakurajimai#6742 <56829176+maisans-maid@users.noreply.github.com> Date: Thu, 14 Jan 2021 05:15:49 +0800 Subject: [PATCH] (fix): Typo on unmute --- commands/moderation/unmute.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}**`)); } };