fix: increase timeout for missing guilds

from 15 seconds to 5 minutes
This commit is contained in:
Isaac
2025-03-31 02:54:25 +01:00
parent 6375f4c53c
commit c94ee655f6
2 changed files with 2 additions and 1 deletions

View File

@@ -36,6 +36,7 @@ module.exports = class Client extends FrameworkClient {
Partials.Reaction,
],
shards: 'auto',
waitGuildTimeout: ms('5m'),
},
{ baseDir: __dirname },
);

View File

@@ -10,6 +10,6 @@ module.exports = class extends Listener {
}
run(guild) {
this.client.log.info(`Removed from guild "${guild.name}"`);
this.client.log.info(`Removed from guild ${guild.id} (${guild.name})`);
}
};