diff --git a/config/_default.js b/config/_default.js index 0115664..736d947 100644 --- a/config/_default.js +++ b/config/_default.js @@ -10,7 +10,7 @@ module.exports = { // [boolean] Whether debug logs will be shown debug: false, // [number] The main embed color (#ffffff -> 0xffffff) - embedColor: 0x429bce, + embedColor: 0x15521c, // [string] curator_role_id curatorRoleID: "", // [string] admin_role_id diff --git a/src/commands/admin/adminbalance.js b/src/commands/admin/adminbalance.js index ccd062b..42bcc31 100644 --- a/src/commands/admin/adminbalance.js +++ b/src/commands/admin/adminbalance.js @@ -1,4 +1,5 @@ const Command = require('../../structures/Command'); +const config = require('config'); module.exports = class AdminBalance extends Command { get name() { return 'adminbalance'; } @@ -13,6 +14,7 @@ module.exports = class AdminBalance extends Command { const wallet = await response.json(); if (await this.handleResponse(message, response, wallet)) return; return message.channel.createMessage({ embed: { + color: config.embedColor, description: `**Available:** ${wallet.result.available} LBC\n\n` + `Reserved in Supports: ${wallet.result.reserved_subtotals.supports} LBC\n` + `Total: ${wallet.result.total} LBC` diff --git a/src/commands/curator/balance.js b/src/commands/curator/balance.js index 7f540a0..edbeb5f 100644 --- a/src/commands/curator/balance.js +++ b/src/commands/curator/balance.js @@ -1,5 +1,6 @@ const Command = require('../../structures/Command'); const Util = require('../../util'); +const config = require('config'); module.exports = class Balance extends Command { get name() { return 'balance'; } @@ -15,6 +16,7 @@ module.exports = class Balance extends Command { const wallet = await response.json(); if (await this.handleResponse(message, response, wallet)) return; return message.channel.createMessage({ embed: { + color: config.embedColor, description: `You have **${wallet.result.available}** LBC available.\n\n` + `Reserved in Supports: ${wallet.result.reserved_subtotals.supports} LBC\n` + `Total: ${wallet.result.total} LBC` + diff --git a/src/commands/curator/supports.js b/src/commands/curator/supports.js index f5e8099..e66f2d0 100644 --- a/src/commands/curator/supports.js +++ b/src/commands/curator/supports.js @@ -47,7 +47,7 @@ module.exports = class Supports extends Command { const paginator = new GenericPager(this.client, message, { items: supports, header: `All supports for <@${discordID || message.author.id}>${givenClaim ? ` on claim \`${givenClaim}\`` : ''}`, itemTitle: 'Supports', - display: item => `*lbry://*[${item.name}]()#\`${item.claim_id}\` (${item.amount} LBC)` + display: item => `*lbry://**${item.name}***#\`${item.claim_id}\` (${item.amount} LBC)` }); return paginator.start(message.channel.id, message.author.id); }