feat: help command #36
1 changed files with 12 additions and 6 deletions
|
@ -22,13 +22,19 @@ export default {
|
||||||
// Check if command exists
|
// Check if command exists
|
||||||
interaction.reply({ content: 'WIP', ephemeral: true });
|
interaction.reply({ content: 'WIP', ephemeral: true });
|
||||||
} else {
|
} else {
|
||||||
const embed = new MessageEmbed()
|
const fields = [];
|
||||||
|
fields.push({
|
||||||
|
name: 'WIP',
|
||||||
|
value: 'WIP',
|
||||||
|
});
|
||||||
|
|
||||||
|
interaction.reply({ embeds: [
|
||||||
|
new MessageEmbed()
|
||||||
.setColor('BLURPLE')
|
.setColor('BLURPLE')
|
||||||
.setTitle(loc.get('c_help1'))
|
.setTitle(loc.get('c_help1'))
|
||||||
.setDescription(loc.get('c_help2'))
|
.setDescription(loc.get('c_help2'))
|
||||||
.addField('WIP', 'WIP');
|
.addFields(fields),
|
||||||
|
] });
|
||||||
interaction.reply({ embeds: [embed] });
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue