14 lines
408 B
JavaScript
14 lines
408 B
JavaScript
module.exports = {
|
|
name: "restart",
|
|
category: "Owner",
|
|
description: "Restart the bot",
|
|
Owner: true,
|
|
run: async (client, interaction, args) => {
|
|
await interaction.deleteReply();
|
|
const msg = await interaction.channel.send("Restarting...");
|
|
await client.destroy();
|
|
await client.login(process.env.TOKEN);
|
|
await msg.delete();
|
|
await interaction.channel.send("Restarted");
|
|
},
|
|
};
|