Compare commits

..

No commits in common. "c39826ead3c2038f47727d17a0b6e825f3b7a8f1" and "dc8c0ab570aea35c37d015b1400e2bb51b24b0d1" have entirely different histories.

2 changed files with 8 additions and 14 deletions

View file

@ -8,7 +8,7 @@ export default {
const filename = getFilename(__filename);
return new SlashCommandBuilder()
.setName(filename.toLowerCase())
.setDescription(client.locales.get(client.config.default_lang)?.get(`c_${filename}_desc`) ?? '')
.setDescription(client.locales.get(client.config.default_lang)?.get(`c_${filename}_desc`) ?? '?')
.setNameLocalizations(getLocalizations(client, `c_${filename}_name`))
.setDescriptionLocalizations(getLocalizations(client, `c_${filename}_desc`));
},
@ -22,19 +22,13 @@ export default {
// Check if command exists
interaction.reply({ content: 'WIP', ephemeral: true });
} else {
const fields = [];
fields.push({
name: 'WIP',
value: 'WIP',
});
interaction.reply({ embeds: [
new MessageEmbed()
const embed = new MessageEmbed()
.setColor('BLURPLE')
.setTitle(loc.get('c_help1'))
.setDescription(loc.get('c_help2'))
.addFields(fields),
] });
.addField('WIP', 'WIP');
interaction.reply({ embeds: [embed] });
}
},
};

View file

@ -8,7 +8,7 @@ export default {
const filename = getFilename(__filename);
return new SlashCommandBuilder()
.setName(filename.toLowerCase())
.setDescription(client.locales.get(client.config.default_lang)?.get(`c_${filename}_desc`) ?? '')
.setDescription(client.locales.get(client.config.default_lang)?.get(`c_${filename}_desc`) ?? '?')
.setNameLocalizations(getLocalizations(client, `c_${filename}_name`))
.setDescriptionLocalizations(getLocalizations(client, `c_${filename}_desc`));
},