changes for eris + new loading UX

This commit is contained in:
Emily 2021-07-17 15:55:18 +10:00
parent 9231fcc671
commit 022ec6b999
18 changed files with 84 additions and 81 deletions

View file

@ -36,11 +36,11 @@ module.exports = class {
}
}
const embed = new client.RichEmbed()
const embed = new client.MessageEmbed()
.setTitle(colour)
.setColour(colour)
.setColor(colour)
.setImage(`https://fakeimg.pl/256x256/${colour.replace('#', '')}/?text=%20`);
message.channel.send({ embed: embed });
message.channel.send({ embeds: [embed] });
}
};