Small pagination bugfix
This commit is contained in:
@ -139,7 +139,7 @@ namespace NadekoBot.Modules.Xp
|
||||
return embed.WithThumbnailUrl(club.ImageUrl);
|
||||
|
||||
return embed;
|
||||
}, club.Users.Count / 10);
|
||||
}, club.Users.Count, 10);
|
||||
}
|
||||
|
||||
[NadekoCommand, Usage, Description, Aliases]
|
||||
@ -170,7 +170,7 @@ namespace NadekoBot.Modules.Xp
|
||||
.WithDescription(toShow)
|
||||
.WithOkColor();
|
||||
|
||||
}, bans.Length / 10);
|
||||
}, bans.Length, 10);
|
||||
}
|
||||
|
||||
|
||||
@ -202,7 +202,7 @@ namespace NadekoBot.Modules.Xp
|
||||
.WithDescription(toShow)
|
||||
.WithOkColor();
|
||||
|
||||
}, apps.Length / 10);
|
||||
}, apps.Length, 10);
|
||||
}
|
||||
|
||||
[NadekoCommand, Usage, Description, Aliases]
|
||||
|
@ -236,7 +236,7 @@ namespace NadekoBot.Modules.Xp
|
||||
}
|
||||
return embed;
|
||||
}
|
||||
}, addPaginatedFooter: false);
|
||||
}, 1000, 10, addPaginatedFooter: false);
|
||||
}
|
||||
|
||||
[NadekoCommand, Usage, Description, Aliases]
|
||||
|
Reference in New Issue
Block a user