mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-18 13:56:25 +02:00
Change **: to :** when bolding lists
This commit is contained in:
@@ -12,7 +12,7 @@ module.exports = class HoroscopeCommand extends Command {
|
||||
group: 'events',
|
||||
memberName: 'horoscope',
|
||||
description: 'Responds with today\'s horoscope for a specific Zodiac sign.',
|
||||
details: `**Signs**: ${signs.join(', ')}`,
|
||||
details: `**Signs:** ${signs.join(', ')}`,
|
||||
clientPermissions: ['EMBED_LINKS'],
|
||||
args: [
|
||||
{
|
||||
|
||||
@@ -21,7 +21,7 @@ module.exports = class HumbleBundleCommand extends Command {
|
||||
if (body.length > 1) {
|
||||
return msg.say(stripIndents`
|
||||
There are **${body.length}** bundles on right now!
|
||||
${body.map(bundle => `**${bundle.bundle_name}**: <${bundle.url}>`).join('\n')}
|
||||
${body.map(bundle => `**${bundle.bundle_name}:** <${bundle.url}>`).join('\n')}
|
||||
`);
|
||||
}
|
||||
const data = body[0];
|
||||
|
||||
@@ -8,7 +8,7 @@ module.exports = class TimeCommand extends Command {
|
||||
group: 'events',
|
||||
memberName: 'time',
|
||||
description: 'Responds with the current time in a particular location.',
|
||||
details: '**Zones**: <https://en.wikipedia.org/wiki/List_of_tz_database_time_zones>',
|
||||
details: '**Zones:** <https://en.wikipedia.org/wiki/List_of_tz_database_time_zones>',
|
||||
args: [
|
||||
{
|
||||
key: 'timeZone',
|
||||
|
||||
Reference in New Issue
Block a user