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/owner/reboot.js

25 lines
487 B
JavaScript

const { Command } = require('discord-akairo');
class RebootCommand extends Command {
constructor() {
super('reboot', {
aliases: ['ded', 'reboot', 'restart'],
split: 'none',
category: 'owner',
ownerOnly: 'true',
description: {
content: 'Restart the bot',
usage: '[]',
examples: ['']
}
});
}
async exec(message) {
await message.channel.send('k bye thx\nhttps://i.redd.it/lw8hrvr0l4f11.jpg');
process.exit();
}
}
module.exports = RebootCommand;