We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8029fce commit 9b31837Copy full SHA for 9b31837
Ep_06/commands/moderation/ban.js
@@ -51,13 +51,13 @@ module.exports = {
51
}
52
53
// Check if the user's banable
54
- if (!toBan.banable) {
+ if (!toBan.bannable) {
55
return message.reply("I can't ban that person due to role hierarchy, I suppose.")
56
.then(m => m.delete(5000));
57
58
59
const embed = new RichEmbed()
60
- .setColor(this.client.color)
+ .setColor("#ff0000")
61
.setThumbnail(toBan.user.displayAvatarURL)
62
.setFooter(message.member.displayName, message.author.displayAvatarURL)
63
.setTimestamp()
@@ -93,4 +93,4 @@ module.exports = {
93
94
});
95
96
-};
+};
0 commit comments