mirror of
https://github.com/arthur-pbty/xiao.git
synced 2026-06-10 19:04:42 +02:00
Change **: to :** when bolding lists
This commit is contained in:
@@ -10,7 +10,7 @@ module.exports = class Base64Command extends Command {
|
||||
group: 'text-edit',
|
||||
memberName: 'base64',
|
||||
description: 'Converts text to/from Base64.',
|
||||
details: `**Modes**: ${modes.join(', ')}`,
|
||||
details: `**Modes:** ${modes.join(', ')}`,
|
||||
args: [
|
||||
{
|
||||
key: 'mode',
|
||||
|
||||
@@ -9,7 +9,7 @@ module.exports = class BinaryCommand extends Command {
|
||||
group: 'text-edit',
|
||||
memberName: 'binary',
|
||||
description: 'Converts text to/from binary.',
|
||||
details: `**Modes**: ${modes.join(', ')}`,
|
||||
details: `**Modes:** ${modes.join(', ')}`,
|
||||
args: [
|
||||
{
|
||||
key: 'mode',
|
||||
|
||||
@@ -12,7 +12,7 @@ module.exports = class CowSayCommand extends Command {
|
||||
group: 'text-edit',
|
||||
memberName: 'cow-say',
|
||||
description: 'Makes a cow say your text.',
|
||||
details: `**Types**: ${cows.join(', ')}`,
|
||||
details: `**Types:** ${cows.join(', ')}`,
|
||||
args: [
|
||||
{
|
||||
key: 'text',
|
||||
|
||||
@@ -12,7 +12,7 @@ module.exports = class CowThinkCommand extends Command {
|
||||
group: 'text-edit',
|
||||
memberName: 'cow-think',
|
||||
description: 'Makes a cow think your text.',
|
||||
details: `**Types**: ${cows.join(', ')}`,
|
||||
details: `**Types:** ${cows.join(', ')}`,
|
||||
args: [
|
||||
{
|
||||
key: 'text',
|
||||
|
||||
@@ -28,7 +28,7 @@ module.exports = class PortalSendCommand extends Command {
|
||||
if (!channels.size) return msg.reply('No channels have an open portal...');
|
||||
const channel = channels.random();
|
||||
try {
|
||||
await channel.send(`**${msg.author.tag} (${msg.channel.type === 'text' ? msg.guild.name : 'DM'})**: ${message}`);
|
||||
await channel.send(`**${msg.author.tag} (${msg.channel.type === 'text' ? msg.guild.name : 'DM'}):** ${message}`);
|
||||
return msg.say(`Message sent to **${channel.name}** in **${channel.guild.name}**!`);
|
||||
} catch (err) {
|
||||
return msg.reply('Failed to send the message. Try again later!');
|
||||
|
||||
@@ -13,7 +13,7 @@ module.exports = class TranslateCommand extends Command {
|
||||
group: 'text-edit',
|
||||
memberName: 'translate',
|
||||
description: 'Translates text to a specific language.',
|
||||
details: `**Codes**: ${Object.keys(codes).join(', ')}`,
|
||||
details: `**Codes:** ${Object.keys(codes).join(', ')}`,
|
||||
clientPermissions: ['EMBED_LINKS'],
|
||||
args: [
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user