commit
9642a24fc9
@ -221,7 +221,7 @@ namespace NadekoBot.Modules.Gambling
|
||||
{
|
||||
var channel = (ITextChannel)umsg.Channel;
|
||||
|
||||
IEnumerable<Currency> richest;
|
||||
IEnumerable<Currency> richest = new List<Currency>();
|
||||
using (var uow = DbHandler.UnitOfWork())
|
||||
{
|
||||
richest = uow.Currency.GetTopRichest(10);
|
||||
@ -235,7 +235,7 @@ $@"```xl
|
||||
┃ Id ┃ $$$ ┃
|
||||
"),
|
||||
(cur, cs) => cur.AppendLine($@"┣━━━━━━━━━━━━━━━━━━━━━╋━━━━━━━━┫
|
||||
┃{(channel.Guild.GetUser(cs.UserId)?.Username.TrimTo(18, true) ?? cs.UserId.ToString()),-20} ┃ {cs.Amount,6} ┃")
|
||||
┃{(channel.Guild.GetUser(cs.UserId)?.Username?.TrimTo(18, true) ?? cs.UserId.ToString()),-20} ┃ {cs.Amount,6} ┃")
|
||||
).ToString() + "┗━━━━━━━━━━━━━━━━━━━━━┻━━━━━━━━┛```").ConfigureAwait(false);
|
||||
}
|
||||
}
|
||||
|
@ -112,16 +112,16 @@ namespace NadekoBot.Modules.Music
|
||||
|
||||
[NadekoCommand, Usage, Description, Aliases]
|
||||
[RequireContext(ContextType.Guild)]
|
||||
public async Task Pause(IUserMessage umsg)
|
||||
public Task Pause(IUserMessage umsg)
|
||||
{
|
||||
var channel = (ITextChannel)umsg.Channel;
|
||||
|
||||
MusicPlayer musicPlayer;
|
||||
if (!MusicPlayers.TryGetValue(channel.Guild.Id, out musicPlayer)) return;
|
||||
if (!MusicPlayers.TryGetValue(channel.Guild.Id, out musicPlayer)) return Task.CompletedTask;
|
||||
if (((IGuildUser)umsg.Author).VoiceChannel != musicPlayer.PlaybackVoiceChannel)
|
||||
return;
|
||||
return Task.CompletedTask;
|
||||
musicPlayer.TogglePause();
|
||||
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
[NadekoCommand, Usage, Description, Aliases]
|
||||
|
@ -27,7 +27,7 @@ namespace NadekoBot.Modules.Utility
|
||||
IEnumerable<Quote> quotes;
|
||||
using (var uow = DbHandler.UnitOfWork())
|
||||
{
|
||||
quotes = uow.Quotes.GetGroup(page * 16, 16);
|
||||
quotes = uow.Quotes.GetGroup(channel.Guild.Id, page * 16, 16);
|
||||
}
|
||||
|
||||
if (quotes.Any())
|
||||
|
@ -8,6 +8,6 @@ namespace NadekoBot.Services.Database.Repositories
|
||||
{
|
||||
IEnumerable<Quote> GetAllQuotesByKeyword(ulong guildId, string keyword);
|
||||
Task<Quote> GetRandomQuoteByKeywordAsync(ulong guildId, string keyword);
|
||||
IEnumerable<Quote> GetGroup(int skip, int take);
|
||||
IEnumerable<Quote> GetGroup(ulong guildId, int skip, int take);
|
||||
}
|
||||
}
|
||||
|
@ -15,8 +15,8 @@ namespace NadekoBot.Services.Database.Repositories.Impl
|
||||
public IEnumerable<Quote> GetAllQuotesByKeyword(ulong guildId, string keyword) =>
|
||||
_set.Where(q => q.GuildId == guildId && q.Keyword == keyword);
|
||||
|
||||
public IEnumerable<Quote> GetGroup(int skip, int take) =>
|
||||
_set.OrderBy(q => q.Keyword).Skip(skip).Take(take).ToList();
|
||||
public IEnumerable<Quote> GetGroup(ulong guildId, int skip, int take) =>
|
||||
_set.Where(q=>q.GuildId == guildId).OrderBy(q => q.Keyword).Skip(skip).Take(take).ToList();
|
||||
|
||||
public Task<Quote> GetRandomQuoteByKeywordAsync(ulong guildId, string keyword)
|
||||
{
|
||||
|
@ -79,13 +79,32 @@ namespace NadekoBot
|
||||
Clients[0].GetDMChannelAsync(channelId);
|
||||
|
||||
internal Task LoginAsync(TokenType tokenType, string token) =>
|
||||
Task.WhenAll(Clients.Select(async c => { await c.LoginAsync(tokenType, token); _log.Info($"Shard #{c.ShardId} logged in."); }));
|
||||
Task.WhenAll(Clients.Select(async c => { await c.LoginAsync(tokenType, token).ConfigureAwait(false); _log.Info($"Shard #{c.ShardId} logged in."); }));
|
||||
|
||||
internal Task ConnectAsync() =>
|
||||
Task.WhenAll(Clients.Select(async c => { await c.ConnectAsync(); _log.Info($"Shard #{c.ShardId} connected."); }));
|
||||
internal async Task ConnectAsync()
|
||||
{
|
||||
foreach (var c in Clients)
|
||||
{
|
||||
try
|
||||
{
|
||||
await c.ConnectAsync().ConfigureAwait(false);
|
||||
_log.Info($"Shard #{c.ShardId} connected.");
|
||||
}
|
||||
catch
|
||||
{
|
||||
_log.Error($"Shard #{c.ShardId} FAILED CONNECTING.");
|
||||
try { await c.ConnectAsync().ConfigureAwait(false); }
|
||||
catch (Exception ex2)
|
||||
{
|
||||
_log.Error($"Shard #{c.ShardId} FAILED CONNECTING TWICE.");
|
||||
_log.Error(ex2);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
internal Task DownloadAllUsersAsync() =>
|
||||
Task.WhenAll(Clients.Select(async c => { await c.DownloadAllUsersAsync(); _log.Info($"Shard #{c.ShardId} downloaded {c.GetGuilds().Sum(g => g.GetUsers().Count)} users."); }));
|
||||
Task.WhenAll(Clients.Select(async c => { await c.DownloadAllUsersAsync().ConfigureAwait(false); _log.Info($"Shard #{c.ShardId} downloaded {c.GetGuilds().Sum(g => g.GetUsers().Count)} users."); }));
|
||||
|
||||
public async Task SetGame(string game)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user