1
0
Fork 0
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Haha-Yes/commands/ded.js

11 lines
237 B
JavaScript

module.exports = {
name: 'ded',
description: 'Reboot the bot',
aliases: ['shutdown', 'reboot'],
execute(message) {
if (message.author.id === '267065637183029248') {
process.exit();
}
},
};