forked from Supositware/Haha-Yes
17 lines
No EOL
521 B
JavaScript
17 lines
No EOL
521 B
JavaScript
const { Command } = require('discord.js-commando');
|
|
module.exports = class DedCommand extends Command {
|
|
constructor(client) {
|
|
super(client, {
|
|
name: 'ded',
|
|
aliases: ['shutdown', 'dead', 'restart', 'reboot'],
|
|
group: 'owner',
|
|
memberName: 'ded',
|
|
description: 'Reboot the bot',
|
|
ownerOnly: true,
|
|
});
|
|
}
|
|
|
|
async run(message) {
|
|
await message.say('k bye thx\nhttps://i.redd.it/lw8hrvr0l4f11.jpg');
|
|
process.exit();
|
|
}} |