module.exports = { name: 'say', aliases: ['dire'], description: 'Fait dire quelque chose au bot', emote: '💬', utilisation: 'say ', category: 'botcontrol', async execute(message, args) { if (args.length === 0) { return message.reply('Veuillez spécifier un message.'); } const text = args.join(' '); try { await message.delete(); } catch { } message.channel.send(text); }, };