We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fdede4c commit 33832ddCopy full SHA for 33832dd
1 file changed
scripts/configure-guild.py
@@ -1059,8 +1059,10 @@ def report_error(message: str) -> None:
1059
class GuildConfigurationBot(Bot):
1060
def __init__(self) -> None:
1061
"""Discord bot which exports all guild members to .csv files and then stops itself."""
1062
+ intents = discord.Intents.all()
1063
+ intents.presences = False
1064
super().__init__(
- intents=discord.Intents.all(),
1065
+ intents=intents,
1066
command_prefix="$",
1067
)
1068
0 commit comments