Merge branch 'wip' into 1.9
This commit is contained in:
commit
2a71509756
@ -35,7 +35,7 @@ namespace NadekoBot.Modules.Administration
|
||||
|
||||
[NadekoCommand, Usage, Description, Aliases]
|
||||
[OwnerOnly]
|
||||
public async Task DefPrefix([Remainder]string prefix)
|
||||
public async Task DefPrefix([Remainder]string prefix = null)
|
||||
{
|
||||
if (string.IsNullOrWhiteSpace(prefix))
|
||||
{
|
||||
|
@ -93,15 +93,17 @@ namespace NadekoBot.Modules.Utility
|
||||
{
|
||||
var rng = new NadekoRandom();
|
||||
var usrs = (await Context.Guild.GetUsersAsync()).ToArray();
|
||||
var roleUsers = usrs.Where(u => u.RoleIds.Contains(role.Id)).Select(u => u.ToString())
|
||||
var roleUsers = usrs
|
||||
.Where(u => u.RoleIds.Contains(role.Id))
|
||||
.Select(u => u.ToString())
|
||||
.ToArray();
|
||||
var inroleusers = string.Join(", ", roleUsers
|
||||
.OrderBy(x => rng.Next())
|
||||
.Take(50));
|
||||
var embed = new EmbedBuilder().WithOkColor()
|
||||
.WithTitle("ℹ️ " + Format.Bold(GetText("inrole_list", Format.Bold(role.Name))) + $" - {roleUsers.Length}")
|
||||
.WithDescription($"```css\n[{role.Name}]\n{inroleusers}```");
|
||||
await Context.Channel.EmbedAsync(embed).ConfigureAwait(false);
|
||||
|
||||
await Context.Channel.SendPaginatedConfirmAsync(_client, 0, (cur) =>
|
||||
{
|
||||
return new EmbedBuilder().WithOkColor()
|
||||
.WithTitle(Format.Bold(GetText("inrole_list", Format.Bold(role.Name))) + $" - {roleUsers.Length}")
|
||||
.WithDescription(string.Join("\n", roleUsers.Skip(cur * 20).Take(20)));
|
||||
}, roleUsers.Length, 20).ConfigureAwait(false);
|
||||
}
|
||||
|
||||
[NadekoCommand, Usage, Description, Aliases]
|
||||
|
Loading…
Reference in New Issue
Block a user