50 lines
1.8 KiB
JavaScript
50 lines
1.8 KiB
JavaScript
module.exports = {
|
|
|
|
name: require('path').parse(__filename).name,
|
|
description: 'Restarts the bot',
|
|
options: [],
|
|
|
|
async parseMessage (client, config, message) {
|
|
await this.handle(client, config, message.author, message.channel);
|
|
},
|
|
|
|
async parseInteraction (client, config, interaction) {
|
|
await this.handle(client, config, interaction.user, interaction.channel);
|
|
},
|
|
|
|
async handle (client, config, user, channel) {
|
|
if (user.id === process.env.OWNERID) {
|
|
const embeds = [{
|
|
title: '<a:AnitroxWorking:997565411212144730> Restart Bot',
|
|
description: '<a:AnitroxWorking:997565411212144730> Restarting now, Be back in a minute!',
|
|
color: 9442302,
|
|
footer: {
|
|
icon_url: user.displayAvatarURL(),
|
|
text: config.footerTxt
|
|
}
|
|
}];
|
|
console.log('[SYSTEM] [INFO] Restarting now!');
|
|
const response = await channel.send({ embeds });
|
|
try {
|
|
client.destroy();
|
|
await client.login(process.env.TOKEN);
|
|
console.log('[SYSTEM] [INFO] Restarted successfully!');
|
|
await response.edit({
|
|
embeds: [{
|
|
title: ':white_check_mark: Restart Bot',
|
|
description: 'Restarted!',
|
|
color: 9442302,
|
|
footer: {
|
|
icon_url: user.displayAvatarURL(),
|
|
text: config.footerTxt
|
|
}
|
|
}]
|
|
});
|
|
} catch (e) { console.error(e); }
|
|
} else {
|
|
console.error('[SYSTEM] [ERR] User ' + user.username + " tried to restart the bot, but doesn't have permission! If this was you, Check your config.json");
|
|
await channel.send(client.generateErrorMessage('You do not have permission to run this command.', user.displayAvatarURL()));
|
|
}
|
|
}
|
|
};
|