fix(*): Correct indentation in helper.js

This commit is contained in:
Olly Nicholass
2021-01-15 12:20:41 +00:00
parent 28b54e10fa
commit 8fbef4dd84
+28 -28
View File
@@ -1,33 +1,33 @@
module.exports = {
// Return a stylised embed for consistancy - this allows you to add additional properties like fields
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();
return embed;
} catch (error) {
logger.error('Failed to send embed message', error);
message.channel.send('There was a problem, sorry!');
}
},
// Trim a string to a specific character length
trim: function (Discord, logger, string, max) {
try {
if (string.length > max) {
return `${string.slice(0, max - 3)}...`;
}
else {
return string;
}
} catch (error) {
logger.error('Failed to trim selection', error);
message.channel.send('There was a problem, sorry!');
}
// 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();
return embed;
} catch (error) {
logger.error('Failed to send embed message', error);
message.channel.send('There was a problem, sorry!');
}
},
// Trim a string to a specific character length
trim: function (Discord, logger, string, max) {
try {
if (string.length > max) {
return `${string.slice(0, max - 3)}...`;
}
else {
return string;
}
} catch (error) {
logger.error('Failed to trim selection', error);
message.channel.send('There was a problem, sorry!');
}
}
};