I'm trying to make a moderation bot and I'm trying to solve an issue I have where when the bot stops/restarts/crashes if a user is muted then they will be permanently muted until manually unmuted. I need to loop all guilds the bot is in and save its id to a variable, as well as loop all members in that guild and save their id to a variable as well. I have tried .forEach() but I get client.guilds.forEach() is not a function any help is appreciated.
.forEach()
client.guilds.forEach() is not a function
Try
let guildsID = []; client.guilds.forEach(guild => { guildsID.push(guild.id) });
2.1m questions
2.1m answers
60 comments
57.0k users