module.exports = { name: 'dnd', description: 'Changer le status du bot en dnd', emote: '🔕', utilisation: 'dnd', category: 'botcontrol', async execute(message, args, client) { client.user.setStatus('dnd'); message.channel.send(`Le bot est maintenant en de pas deranger`); }, };