diff --git a/index.js b/index.js index 9b802db..7bb38c3 100644 --- a/index.js +++ b/index.js @@ -56,11 +56,6 @@ global.log = log; client.on('ready', async () => { log.success(`Logged in as ${client.user.displayName}`); - await client.setStatus("dnd"); - await client.setActivity({ - type: Discord.ActivityType.Custom, - name: "Just chillin" - }) const commands = require("./commands") // Command registration log.info("Registering commands...") diff --git a/interactionHandlers/commands/admin.js b/interactionHandlers/commands/admin.js index e0e0022..46f3928 100644 --- a/interactionHandlers/commands/admin.js +++ b/interactionHandlers/commands/admin.js @@ -53,11 +53,6 @@ module.exports.execute = async (interaction) => { break; case 'reboot': // Run `reboot 0` await interaction.reply({ content: "Rebooting...", ephemeral: true }); - await client.setStatus("dnd"); - await client.setActivity({ - type: Discord.ActivityType.Custom, - name: "Server Rebooting..." - }) await client.destroy(); log.info('Client destroyed.'); pool.end((err) => {