mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-13 00:09:08 +02:00
String Changes, Don't register tons of defaults
This commit is contained in:
@@ -11,7 +11,7 @@ module.exports = class UnbanCommand extends commando.Command {
|
||||
group: 'moderation',
|
||||
memberName: 'unban',
|
||||
description: 'Unbans a user. (;unban USERID not being a jerk.)',
|
||||
examples: [";unban USERID not being a jerk."],
|
||||
examples: [';unban USERID not being a jerk.'],
|
||||
guildOnly: true,
|
||||
args: [{
|
||||
key: 'memberID',
|
||||
@@ -21,7 +21,7 @@ module.exports = class UnbanCommand extends commando.Command {
|
||||
if (userID.length === 18) {
|
||||
return true;
|
||||
}
|
||||
return "Invalid ID. Please enter the user you wish to unban's ID.";
|
||||
return 'Invalid ID. Please enter the user you wish to unban\'s ID.';
|
||||
}
|
||||
}, {
|
||||
key: 'reason',
|
||||
@@ -31,7 +31,7 @@ module.exports = class UnbanCommand extends commando.Command {
|
||||
if (reason.length < 141) {
|
||||
return true;
|
||||
}
|
||||
return "Please keep your reason under 140 characters.";
|
||||
return 'Please keep your reason under 140 characters.';
|
||||
}
|
||||
}]
|
||||
});
|
||||
@@ -45,7 +45,7 @@ module.exports = class UnbanCommand extends commando.Command {
|
||||
if (!message.channel.permissionsFor(this.client.user).hasPermission(['SEND_MESSAGES', 'READ_MESSAGES', 'EMBED_LINKS', 'BAN_MEMBERS'])) return;
|
||||
}
|
||||
console.log(`[Command] ${message.content}`);
|
||||
if (!message.guild.channels.exists("name", "mod_logs")) return message.say(":x: Error! Could not find the mod_logs channel! Please create it!");
|
||||
if (!message.guild.channels.exists('name', 'mod_logs')) return message.say(':x: Error! Could not find the mod_logs channel! Please create it!');
|
||||
const memberID = args.memberID;
|
||||
const reason = args.reason;
|
||||
const bans = await message.guild.fetchBans();
|
||||
@@ -53,7 +53,7 @@ module.exports = class UnbanCommand extends commando.Command {
|
||||
const unbanUserObj = await bans.get(memberID);
|
||||
try {
|
||||
const unbanUser = await message.guild.unban(unbanUserObj);
|
||||
const okHandMsg = await message.say(":ok_hand:");
|
||||
const okHandMsg = await message.say(':ok_hand:');
|
||||
const embed = new Discord.RichEmbed()
|
||||
.setAuthor(`${message.author.username}#${message.author.discriminator}`, message.author.avatarURL)
|
||||
.setColor(0x00AE86)
|
||||
|
||||
Reference in New Issue
Block a user