Add name base on filename and desc based on default language

This commit is contained in:
Mylloon 2022-07-21 17:44:55 +02:00
parent 4068e0da7f
commit 2776048d33
Signed by: Anri
GPG key ID: A82D63DFF8D1317F

View file

@ -3,9 +3,14 @@ import { Client, CommandInteraction, Message } from 'discord.js';
import { getLocale } from '../../utils/locales';
export default {
data: (client: Client) => new SlashCommandBuilder()
.setNameLocalizations(getLocale(client, 'c_ping_name'))
.setDescriptionLocalizations(getLocale(client, 'c_ping_desc')),
data: (client: Client) => {
const path = __filename.split('/');
return new SlashCommandBuilder()
.setName(path[path.length - 1].split('.')[0])
.setDescription(client.locales.get(client.config.default_lang)?.get('c_ping_desc') ?? '?')
.setNameLocalizations(getLocale(client, 'c_ping_name'))
.setDescriptionLocalizations(getLocale(client, 'c_ping_desc'));
},
interaction: async (interaction: CommandInteraction, client: Client) => {
const loc = client.locales.get(interaction.locale) ?? client.locales.get(client.config.default_lang);