provide member object instead of ID
This commit is contained in:
parent
bc8ce64caa
commit
744ec1951a
8 changed files with 14 additions and 14 deletions
|
@ -32,7 +32,7 @@ module.exports = class {
|
||||||
if (!args[0]) {
|
if (!args[0]) {
|
||||||
const embed = new client.RichEmbed();
|
const embed = new client.RichEmbed();
|
||||||
embed.setTitle('Help & Commands');
|
embed.setTitle('Help & Commands');
|
||||||
embed.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id));
|
embed.setColour(client.functions.displayHexColour(message.channel.guild));
|
||||||
embed.setDescription(
|
embed.setDescription(
|
||||||
`
|
`
|
||||||
» Use \`${message.prefix}help [category]\` to get basic information on all commands in the category.
|
» Use \`${message.prefix}help [category]\` to get basic information on all commands in the category.
|
||||||
|
@ -66,7 +66,7 @@ module.exports = class {
|
||||||
|
|
||||||
const embed = new client.RichEmbed()
|
const embed = new client.RichEmbed()
|
||||||
.setTitle(prettified[cat].emoji + ' ' + cat)
|
.setTitle(prettified[cat].emoji + ' ' + cat)
|
||||||
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id))
|
.setColour(client.functions.displayHexColour(message.channel.guild))
|
||||||
.setDescription(cmds)
|
.setDescription(cmds)
|
||||||
.setFooter('<> = required, / = either/or, [] = optional');
|
.setFooter('<> = required, / = either/or, [] = optional');
|
||||||
|
|
||||||
|
@ -77,7 +77,7 @@ module.exports = class {
|
||||||
const command = client.commands.get(cmd) || client.commands.get(client.aliases.get(cmd));
|
const command = client.commands.get(cmd) || client.commands.get(client.aliases.get(cmd));
|
||||||
const embed = new client.RichEmbed()
|
const embed = new client.RichEmbed()
|
||||||
.setTitle(prettified[command.category].emoji + ' ' + command.category + ' -> ' + command.name.toProperCase())
|
.setTitle(prettified[command.category].emoji + ' ' + command.category + ' -> ' + command.name.toProperCase())
|
||||||
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id))
|
.setColour(client.functions.displayHexColour(message.channel.guild))
|
||||||
.setDescription(command.help.description)
|
.setDescription(command.help.description)
|
||||||
.addField('Format:', `\`${message.prefix + command.name} ${command.help.arguments}`.trim() + '`');
|
.addField('Format:', `\`${message.prefix + command.name} ${command.help.arguments}`.trim() + '`');
|
||||||
if (command.help.details.length > 0) embed.addField('Parameters:', command.help.details);
|
if (command.help.details.length > 0) embed.addField('Parameters:', command.help.details);
|
||||||
|
|
|
@ -24,12 +24,12 @@ module.exports = class {
|
||||||
list.push(`${user.username}#${user.discriminator}`);
|
list.push(`${user.username}#${user.discriminator}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (list.length === 0) return message.channel.createMessage('The server blocklist is currently empty. Use `blocklist add <user>` to add people to the blocklist!');
|
if (list.length === 0) return message.channel.=('The server blocklist is currently empty. Use `blocklist add <user>` to add people to the blocklist!');
|
||||||
|
|
||||||
const embed = new client.RichEmbed()
|
const embed = new client.RichEmbed()
|
||||||
.setTitle('Users on blocklist: ' + data.guild.blocklist.length)
|
.setTitle('Users on blocklist: ' + data.guild.blocklist.length)
|
||||||
.setDescription('```' + list.join(', ') + '```')
|
.setDescription('```' + list.join(', ') + '```')
|
||||||
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id));
|
.setColour(client.functions.displayHexColour(message.channel.guild));
|
||||||
|
|
||||||
message.channel.createMessage({ embed: embed });
|
message.channel.createMessage({ embed: embed });
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ module.exports = class {
|
||||||
.then(json => {
|
.then(json => {
|
||||||
const embed = new client.RichEmbed()
|
const embed = new client.RichEmbed()
|
||||||
.setTitle(`${json.data.name} (No. ${json.data.number})`)
|
.setTitle(`${json.data.name} (No. ${json.data.number})`)
|
||||||
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id))
|
.setColour(client.functions.displayHexColour(message.channel.guild))
|
||||||
.setURL('https://www.mezzacotta.net/garfield/?comic=' + json.data.number)
|
.setURL('https://www.mezzacotta.net/garfield/?comic=' + json.data.number)
|
||||||
.setImage(json.data.image.src);
|
.setImage(json.data.image.src);
|
||||||
message.channel.createMessage({ embed: embed });
|
message.channel.createMessage({ embed: embed });
|
||||||
|
|
|
@ -71,7 +71,7 @@ module.exports = class {
|
||||||
}
|
}
|
||||||
|
|
||||||
const embed = new client.RichEmbed()
|
const embed = new client.RichEmbed()
|
||||||
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id))
|
.setColour(client.functions.displayHexColour(message.channel.guild))
|
||||||
.setTitle(ability.name.toProperCase());
|
.setTitle(ability.name.toProperCase());
|
||||||
if (ability.desc) {
|
if (ability.desc) {
|
||||||
embed.setDescription(ability.desc + fieldEffects);
|
embed.setDescription(ability.desc + fieldEffects);
|
||||||
|
|
|
@ -67,7 +67,7 @@ module.exports = class {
|
||||||
const item = json.data.getItemDetailsByFuzzy;
|
const item = json.data.getItemDetailsByFuzzy;
|
||||||
|
|
||||||
const embed = new client.RichEmbed()
|
const embed = new client.RichEmbed()
|
||||||
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id))
|
.setColour(client.functions.displayHexColour(message.channel.guild))
|
||||||
.setTitle(item.name)
|
.setTitle(item.name)
|
||||||
.setThumbnail(item.sprite)
|
.setThumbnail(item.sprite)
|
||||||
.addField('External Resources:', `[Bulbapedia](${item.bulbapediaPage}) • [Serebii](${item.serebiiPage}) • [Smogon](${item.smogonPage})`);
|
.addField('External Resources:', `[Bulbapedia](${item.bulbapediaPage}) • [Serebii](${item.serebiiPage}) • [Smogon](${item.smogonPage})`);
|
||||||
|
|
|
@ -35,7 +35,7 @@ module.exports = class {
|
||||||
embeds.push(
|
embeds.push(
|
||||||
new client.RichEmbed()
|
new client.RichEmbed()
|
||||||
.setTitle('Upcoming Salmon Run')
|
.setTitle('Upcoming Salmon Run')
|
||||||
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id))
|
.setColour(client.functions.displayHexColour(message.channel.guild))
|
||||||
.setImage('https://splatoon2.ink/assets/splatnet/'+json.details[0].stage.image)
|
.setImage('https://splatoon2.ink/assets/splatnet/'+json.details[0].stage.image)
|
||||||
.addField('Map', json.details[0].stage.name, true)
|
.addField('Map', json.details[0].stage.name, true)
|
||||||
.setFooter(`Starting in ${prettifyMiliseconds(json.details[0].start_time * 1000 - Date.now(), { secondsDecimalDigits: 0 })} | Data provided by splatoon2.ink`)
|
.setFooter(`Starting in ${prettifyMiliseconds(json.details[0].start_time * 1000 - Date.now(), { secondsDecimalDigits: 0 })} | Data provided by splatoon2.ink`)
|
||||||
|
@ -44,7 +44,7 @@ module.exports = class {
|
||||||
embeds.push(
|
embeds.push(
|
||||||
new client.RichEmbed()
|
new client.RichEmbed()
|
||||||
.setTitle('Current Salmon Run')
|
.setTitle('Current Salmon Run')
|
||||||
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id))
|
.setColour(client.functions.displayHexColour(message.channel.guild))
|
||||||
.setThumbnail('https://splatoon2.ink/assets/splatnet'+timelineJson.coop.reward_gear.gear.image)
|
.setThumbnail('https://splatoon2.ink/assets/splatnet'+timelineJson.coop.reward_gear.gear.image)
|
||||||
.setImage('https://splatoon2.ink/assets/splatnet/'+json.details[0].stage.image)
|
.setImage('https://splatoon2.ink/assets/splatnet/'+json.details[0].stage.image)
|
||||||
.addField('Map', json.details[0].stage.name, true)
|
.addField('Map', json.details[0].stage.name, true)
|
||||||
|
@ -57,7 +57,7 @@ module.exports = class {
|
||||||
embeds.push(
|
embeds.push(
|
||||||
new client.RichEmbed()
|
new client.RichEmbed()
|
||||||
.setTitle('Upcoming Salmon Run')
|
.setTitle('Upcoming Salmon Run')
|
||||||
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id))
|
.setColour(client.functions.displayHexColour(message.channel.guild))
|
||||||
.setImage('https://splatoon2.ink/assets/splatnet/'+json.details[1].stage.image)
|
.setImage('https://splatoon2.ink/assets/splatnet/'+json.details[1].stage.image)
|
||||||
.addField('Map', json.details[1].stage.name, true)
|
.addField('Map', json.details[1].stage.name, true)
|
||||||
.addField('Weapons', json.details[1].weapons[1].weapon.name+', '+json.details[1].weapons[1].weapon.name+', '+json.details[1].weapons[2].weapon.name+', '+json.details[1].weapons[3].weapon.name)
|
.addField('Weapons', json.details[1].weapons[1].weapon.name+', '+json.details[1].weapons[1].weapon.name+', '+json.details[1].weapons[2].weapon.name+', '+json.details[1].weapons[3].weapon.name)
|
||||||
|
|
|
@ -31,7 +31,7 @@ module.exports = class {
|
||||||
const embed = new client.RichEmbed()
|
const embed = new client.RichEmbed()
|
||||||
.setTitle(json.merchandises[i].gear.name)
|
.setTitle(json.merchandises[i].gear.name)
|
||||||
.setThumbnail('https://splatoon2.ink/assets/splatnet' + json.merchandises[i].gear.image)
|
.setThumbnail('https://splatoon2.ink/assets/splatnet' + json.merchandises[i].gear.image)
|
||||||
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id))
|
.setColour(client.functions.displayHexColour(message.channel.guild))
|
||||||
.addField('Price', (json.merchandises[i].price).toString(), true)
|
.addField('Price', (json.merchandises[i].price).toString(), true)
|
||||||
.addField('Brand', json.merchandises[i].gear.brand.name, true)
|
.addField('Brand', json.merchandises[i].gear.brand.name, true)
|
||||||
.addField('Ability Slots', (json.merchandises[i].gear.rarity + 1).toString(), true)
|
.addField('Ability Slots', (json.merchandises[i].gear.rarity + 1).toString(), true)
|
||||||
|
|
|
@ -29,7 +29,7 @@ module.exports = class {
|
||||||
const embeds = [
|
const embeds = [
|
||||||
new client.RichEmbed()
|
new client.RichEmbed()
|
||||||
.setTitle('Current Splatoon 2 Maps')
|
.setTitle('Current Splatoon 2 Maps')
|
||||||
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id))
|
.setColour(client.functions.displayHexColour(message.channel.guild))
|
||||||
.addField('<:turf_war:814651383911153692> Turf War', `${json.regular[0].stage_a.name}\n${json.regular[0].stage_b.name}`, true)
|
.addField('<:turf_war:814651383911153692> Turf War', `${json.regular[0].stage_a.name}\n${json.regular[0].stage_b.name}`, true)
|
||||||
.addField(`<:ranked:814651402479468544> Ranked: ${json.gachi[0].rule.name}`, `${json.gachi[0].stage_a.name}\n${json.gachi[0].stage_b.name}`, true)
|
.addField(`<:ranked:814651402479468544> Ranked: ${json.gachi[0].rule.name}`, `${json.gachi[0].stage_a.name}\n${json.gachi[0].stage_b.name}`, true)
|
||||||
.addField(`<:league:814651415409590363> League: ${json.league[0].rule.name}`, `${json.league[0].stage_a.name}\n${json.league[0].stage_b.name}`, true)
|
.addField(`<:league:814651415409590363> League: ${json.league[0].rule.name}`, `${json.league[0].stage_a.name}\n${json.league[0].stage_b.name}`, true)
|
||||||
|
@ -39,7 +39,7 @@ module.exports = class {
|
||||||
for ( let i = 1; i < json.regular.length; i++ ) {
|
for ( let i = 1; i < json.regular.length; i++ ) {
|
||||||
const embed = new client.RichEmbed()
|
const embed = new client.RichEmbed()
|
||||||
.setTitle('Upcoming Splatoon 2 Maps')
|
.setTitle('Upcoming Splatoon 2 Maps')
|
||||||
.setColour(client.functions.displayHexColour(message.channel.guild, client.user.id))
|
.setColour(client.functions.displayHexColour(message.channel.guild))
|
||||||
.addField('<:turf_war:814651383911153692> Turf War', `${json.regular[i].stage_a.name}\n${json.regular[i].stage_b.name}`, true)
|
.addField('<:turf_war:814651383911153692> Turf War', `${json.regular[i].stage_a.name}\n${json.regular[i].stage_b.name}`, true)
|
||||||
.addField(`<:ranked:814651402479468544> Ranked: ${json.gachi[i].rule.name}`, `${json.gachi[i].stage_a.name}\n${json.gachi[i].stage_b.name}`, true)
|
.addField(`<:ranked:814651402479468544> Ranked: ${json.gachi[i].rule.name}`, `${json.gachi[i].stage_a.name}\n${json.gachi[i].stage_b.name}`, true)
|
||||||
.addField(`<:league:814651415409590363> League: ${json.league[i].rule.name}`, `${json.league[i].stage_a.name}\n${json.league[i].stage_b.name}`, true)
|
.addField(`<:league:814651415409590363> League: ${json.league[i].rule.name}`, `${json.league[i].stage_a.name}\n${json.league[i].stage_b.name}`, true)
|
||||||
|
|
Loading…
Reference in a new issue