Skip to content

Commit 33832dd

Browse files
committed
Don't ask for 'presences' intent (not required)
1 parent fdede4c commit 33832dd

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

scripts/configure-guild.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1059,8 +1059,10 @@ def report_error(message: str) -> None:
10591059
class GuildConfigurationBot(Bot):
10601060
def __init__(self) -> None:
10611061
"""Discord bot which exports all guild members to .csv files and then stops itself."""
1062+
intents = discord.Intents.all()
1063+
intents.presences = False
10621064
super().__init__(
1063-
intents=discord.Intents.all(),
1065+
intents=intents,
10641066
command_prefix="$",
10651067
)
10661068

0 commit comments

Comments
 (0)