ask for the [100,199] range in lazy loads

This commit is contained in:
ouwou
2020-10-02 00:26:43 -04:00
parent dddcef117c
commit 8382732557

View File

@@ -342,7 +342,8 @@ void DiscordClient::SendLazyLoad(Snowflake id) {
LazyLoadRequestMessage msg;
std::unordered_map<Snowflake, std::vector<std::pair<int, int>>> c;
c[id] = {
std::make_pair(0, 99)
std::make_pair(0, 99),
std::make_pair(100, 199)
};
msg.Channels = c;
msg.GuildID = GetChannel(id)->GuildID;