@@ -77,7 +77,7 @@ public class DiscordSocketConfig : DiscordRestConfig
7777 /// <para>
7878 /// By default, the Discord gateway will only send offline members if a guild has less than a certain number
7979 /// of members (determined by <see cref="LargeThreshold"/> in this library). This behaviour is why
80- /// sometimes a user may be missing from the WebSocket cache for collections such as
80+ /// sometimes a user may be missing from the WebSocket cache for collections such as
8181 /// <see cref="Discord.WebSocket.SocketGuild.Users"/>.
8282 /// </para>
8383 /// <para>
@@ -86,7 +86,7 @@ public class DiscordSocketConfig : DiscordRestConfig
8686 /// downloaded to the WebSocket cache.
8787 /// </para>
8888 /// <para>
89- /// For more information, please see
89+ /// For more information, please see
9090 /// <see href="https://discordapp.com/developers/docs/topics/gateway#request-guild-members">Request Guild Members</see>
9191 /// on the official Discord API documentation.
9292 /// </para>
@@ -95,7 +95,7 @@ public class DiscordSocketConfig : DiscordRestConfig
9595 /// traffic. If you are using the command system, the default user TypeReader may fail to find the user
9696 /// due to this issue. This may be resolved at v3 of the library. Until then, you may want to consider
9797 /// overriding the TypeReader and use
98- /// <see cref="DiscordRestClient.GetUserAsync(System.UInt64,Discord.RequestOptions)"/>
98+ /// <see cref="DiscordRestClient.GetUserAsync(System.UInt64,Discord.RequestOptions)"/>
9999 /// or <see cref="DiscordRestClient.GetGuildUserAsync"/>
100100 /// as a backup.
101101 /// </note>
@@ -119,6 +119,11 @@ public class DiscordSocketConfig : DiscordRestConfig
119119 /// </summary>
120120 public bool ? ExclusiveBulkDelete { get ; set ; } = null ;
121121
122+ /// <summary>
123+ /// Gets or sets enabling dispatching of guild subscription events e.g. presence and typing events.
124+ /// </summary>
125+ public bool GuildSubscriptions { get ; set ; } = true ;
126+
122127 /// <summary>
123128 /// Initializes a default configuration.
124129 /// </summary>
0 commit comments