Add config option to download all users on GuildAvailable

Resolves #302
This commit is contained in:
Christopher F
2016-12-04 19:47:15 -05:00
parent 08cfc1dd7f
commit ec71b84720
2 changed files with 14 additions and 0 deletions

View File

@@ -28,5 +28,8 @@ namespace Discord.WebSocket
/// <summary> Gets or sets the provider used to generate new websocket connections. </summary>
public WebSocketProvider WebSocketProvider { get; set; } = () => new DefaultWebSocketClient();
/// <summary> Gets or sets whether or not all users should be downloaded as guilds come available. </summary>
public bool DownloadUsersOnGuildAvailable { get; set; } = false;
}
}