diff options
author | 2020-10-31 15:02:58 +0000 | |
---|---|---|
committer | 2020-10-31 15:02:58 +0000 | |
commit | 6e15ab137172f4797bcf925964ae7302e4e1e69f (patch) | |
tree | 3f5f72ae6a1986f0ac0755ab51e9a38e83c85cad /bot | |
parent | Merge branch 'master' into candy (diff) | |
parent | Merge pull request #478 from python-discord/discordpy-15 (diff) |
Merge branch 'master' into candy
Diffstat (limited to 'bot')
-rw-r--r-- | bot/bot.py | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -204,8 +204,17 @@ class SeasonalBot(commands.Bot): _allowed_roles = [discord.Object(id_) for id_ in MODERATION_ROLES] + +_intents = discord.Intents.default() # Default is all intents except for privileged ones (Members, Presences, ...) +_intents.bans = False +_intents.integrations = False +_intents.invites = False +_intents.typing = False +_intents.webhooks = False + bot = SeasonalBot( command_prefix=Client.prefix, activity=discord.Game(name=f"Commands: {Client.prefix}help"), allowed_mentions=discord.AllowedMentions(everyone=False, roles=_allowed_roles), + intents=_intents, ) |