This repository has been archived on 2024-01-30. You can view files and clone it, but cannot push or open issues or pull requests.
anitrox/commands/restart.js

30 lines
1.1 KiB
JavaScript
Raw Normal View History

2021-01-26 14:03:02 -06:00
module.exports = {
name: require('path').parse(__filename).name,
2022-03-29 18:53:55 -05:00
description: 'Restarts the bot',
options: [],
async parseMessage (client, config, message, args) {
await message.channel.send(await this.handle(client, config, message.author, args.slice(0).join(' ')));
},
async parseInteraction (client, config, interaction) {
await interaction.reply(await this.handle(client, config, interaction.user, interaction.options.getString('question')));
},
async handle (client, config, user) {
if (user.id === config.ownerID) {
console.log('Anitrox is restarting now!');
// await message.channel.send('<a:NyabotWorking:697147309531594843> Restarting...');
try {
client.destroy();
2022-03-29 13:55:44 -05:00
await client.login(config.token);
console.log('All systems go');
return '<:NyabotSuccess:697211376740859914> Restart Successful';
} catch (e) { console.error(e); }
} else {
return '<:NyabotDenied:697145462565896194> Access Denied, You must be bot owner to execute this command.';
}
}
};