We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29b8701 commit 5dfbeb5Copy full SHA for 5dfbeb5
index.ts
@@ -34,8 +34,8 @@ client.on("ready", async () => {
34
console.log("Checking if all roles exist in servers.");
35
36
await Promise.all(
37
- client.guilds.cache.map(async (guild) => {
38
- checkForRoles(guild);
+ client.guilds.cache.map((guild) => {
+ return checkForRoles(guild);
39
})
40
);
41
}
0 commit comments