Chande index to correspond to the index in the complete list
This commit is contained in:
parent
2279b4a35e
commit
8bdcc96c8e
@ -110,7 +110,7 @@ namespace NadekoBot.Modules.Permissions
|
||||
using (var uow = DbHandler.UnitOfWork())
|
||||
{
|
||||
var perms = uow.GuildConfigs.PermissionsFor(channel.Guild.Id).RootPermission;
|
||||
var i = 1;
|
||||
var i = 1 + 20 * (page - 1);
|
||||
toSend = Format.Code($"Permissions page {page}") + "\n\n" + String.Join("\n", perms.AsEnumerable().Skip((page - 1) * 20).Take(20).Select(p => $"`{(i++)}.` {(p.Next == null ? Format.Bold(p.GetCommand(channel.Guild) + " [uneditable]") : (p.GetCommand(channel.Guild)))}"));
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user