mirror of
https://github.com/celisej567/abaddon.git
synced 2026-09-06 20:15:19 +03:00
ask for the [100,199] range in lazy loads
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user