mirror of
https://github.com/arthur-pbty/gestion.git
synced 2026-06-03 23:36:35 +02:00
12 lines
302 B
JavaScript
12 lines
302 B
JavaScript
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`);
|
|
},
|
|
}; |