diff --git a/src/structures/guild.ts b/src/structures/guild.ts index 63b936205..080468775 100644 --- a/src/structures/guild.ts +++ b/src/structures/guild.ts @@ -264,7 +264,11 @@ export async function createDiscordenoGuild(data: Guild, shardId: number) { }); } - await Promise.all(promises); + await Promise.all( + promises.map(async (promise) => { + return await promise(); + }) + ); const roles = await Promise.all( (data.roles || []).map((role) =>