From 5a310665627b3fde0592a12afd830009b74e08b3 Mon Sep 17 00:00:00 2001 From: Luke Date: Wed, 10 Jul 2019 04:51:59 +0100 Subject: [PATCH] guild_subscriptions --- disco/client.py | 3 +++ disco/gateway/client.py | 1 + 2 files changed, 4 insertions(+) diff --git a/disco/client.py b/disco/client.py index c480af9..6445bad 100644 --- a/disco/client.py +++ b/disco/client.py @@ -25,6 +25,8 @@ class ClientConfig(Config): The shard ID for the current client instance. shard_count : int The total count of shards running. + guild_subscriptions : bool + Whether to enable subscription events (e.g. presence and typing). max_reconnects : int The maximum number of connection retries to make before giving up (0 = never give up). log_level: str @@ -42,6 +44,7 @@ class ClientConfig(Config): token = '' shard_id = 0 shard_count = 1 + guild_subscriptions = True max_reconnects = 5 log_level = 'info' diff --git a/disco/gateway/client.py b/disco/gateway/client.py index a951145..b8ab31c 100644 --- a/disco/gateway/client.py +++ b/disco/gateway/client.py @@ -214,6 +214,7 @@ class GatewayClient(LoggingClass): 'token': self.client.config.token, 'compress': True, 'large_threshold': 250, + 'guild_subscriptions': bool(self.client.config.guild_subscriptions), 'shard': [ int(self.client.config.shard_id), int(self.client.config.shard_count),