mirror of
https://github.com/jcreek/MupBot.git
synced 2026-07-13 02:43:45 +00:00
feat(*): Add sendEmbedMessage helper method
This commit is contained in:
@@ -1,3 +1,5 @@
|
|||||||
|
const { sendEmbedMessage } = require('./helpers.js');
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
matchCommand: function (Discord, config, logger, message, command, args) {
|
matchCommand: function (Discord, config, logger, message, command, args) {
|
||||||
switch(command) {
|
switch(command) {
|
||||||
|
|||||||
+19
@@ -0,0 +1,19 @@
|
|||||||
|
module.exports = {
|
||||||
|
sendEmbedMessage: function (Discord, logger, message, title, description, colour = '#F4B400') {
|
||||||
|
// For documentation see https://github.com/AnIdiotsGuide/discordjs-bot-guide/blob/master/first-bot/using-embeds-in-messages.md
|
||||||
|
try {
|
||||||
|
const embed = new Discord.MessageEmbed()
|
||||||
|
.setTitle(title)
|
||||||
|
.setColor(colour)
|
||||||
|
.setDescription(description)
|
||||||
|
.setFooter('This is a community-made open source bot - if it goes down, fix it')
|
||||||
|
.setThumbnail('https://cdn.discordapp.com/icons/333376110329069578/b5cf0e90b74a3e1b828c15a262b7a5c8.png?size=128')
|
||||||
|
.setTimestamp();
|
||||||
|
|
||||||
|
message.channel.send(embed);
|
||||||
|
} catch (error) {
|
||||||
|
logger.error('Failed to send embed message', error);
|
||||||
|
message.channel.send('There was a problem, sorry!');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user