fix embed stuff

This commit is contained in:
Emily 2021-02-08 13:06:15 +11:00
parent 807ff4a32b
commit aa2d1a99f6

View file

@ -30,7 +30,7 @@ module.exports = class {
}); });
if (!args[0]) { if (!args[0]) {
const embed = new client.Richclient.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, client.user.id));
embed.setDescription( embed.setDescription(
@ -64,7 +64,7 @@ module.exports = class {
cmds += `**${message.prefix + cmd.name}** ${params}${cmd.help.description}\n`; cmds += `**${message.prefix + cmd.name}** ${params}${cmd.help.description}\n`;
}); });
const embed = new client.Richclient.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, client.user.id))
.setDescription(cmds) .setDescription(cmds)
@ -75,7 +75,7 @@ module.exports = class {
if (client.commands.has(cmd) || client.aliases.has(cmd)) { if (client.commands.has(cmd) || client.aliases.has(cmd)) {
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.Richclient.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, client.user.id))
.setDescription(command.help.description) .setDescription(command.help.description)