Changing waitGuildTime in Client Options

I have 2 guilds that were "soft deleted" by Discord and are unavailable and trigger the guildDelete event every time my bot starts. This causes a 15 second delay upon bot start due to waitGuildTimeout waiting 15 seconds. WaitGuildTimeout "is the time in milliseconds that clients with the GatewayIntentBits.Guilds gateway intent should wait for missing guilds to be received before being ready." Is there a way I can have the "missing guilds" list only be populated with guilds that are "available?" I'm not sure changing the default wait time is the best solution due to other unintended consequences. Thanks!
8 Replies
Unknown User
Unknown User3y ago
Message Not Public
Sign In & Join Server To View
Bot Mhann
Bot MhannOP3y ago
Well, I have 2 guilds that were soft uninstalled by Discord and trigger the guildDelete event everytime I start my bot. However, the guild.available for these guild is false. @qjuh
Bot Mhann
Bot MhannOP3y ago
Bot Mhann
Bot MhannOP3y ago
That is what is triggered everytime my bot starts and causes the delay of 15 seconds before triggering my client.ready event. I'm " waiting for missing guilds to be received before being ready" No, it was a soft uninstall by Discord. Hmm.... So in the case of a soft uninstall, is there anything I can do to prevent this delayed startup? It's been about a week now of the guildDelete event triggering every time the bot starts. What happens if I decrease WaitGuildTimeout ? Will the bot receive the payload after it has launched @qjuh or does it NEED to receive before the ready event? Thank you again for helping to explain this!
Syjalo
Syjalo3y ago
Deleted and unavailable guilds both have available property set to false. But deleted guilds aren't in the cache. Use the cache to filter events.
Bot Mhann
Bot MhannOP3y ago
Ok, I think I can live with that. It still seems something would be different when a guild in one of these "soft uninstall" states is attempted to be fetched before the ready event...something that would indicate this payload isn't ever coming...but I don't know the details on that. Are you saying there is a way to "filter" out waiting the full 15 seconds for the response from a guild that is soft uninstalled? (Again this is occurring before my ready event) @syjalo Just curious on my last point? Thanks!
Bot Mhann
Bot MhannOP3y ago
@qjuh Here is the paypload that comes back when the guildDelete event is triggered on a soft uninstall:
Bot Mhann
Bot MhannOP3y ago
Is there something there that could be used as a filter (on your end) to not wait the full 15 seconds and realize the guild must have been soft removed?

Did you find this page helpful?