Fixed .poll and .pollend
This commit is contained in:
parent
08fc1b12f7
commit
ffcaa594c9
@ -39,7 +39,7 @@ namespace NadekoBot.Modules.Games
|
||||
|
||||
private async Task InternalStartPoll(string arg)
|
||||
{
|
||||
if(await _service.StartPoll(Context.Channel.Id, Context.Message, arg) == false)
|
||||
if(await _service.StartPoll(Context.Guild.Id, Context.Message, arg) == false)
|
||||
await ReplyErrorLocalized("poll_already_running").ConfigureAwait(false);
|
||||
}
|
||||
|
||||
@ -50,8 +50,8 @@ namespace NadekoBot.Modules.Games
|
||||
{
|
||||
var channel = (ITextChannel)Context.Channel;
|
||||
|
||||
_service.ActivePolls.TryRemove(channel.Guild.Id, out var poll);
|
||||
await poll.StopPoll().ConfigureAwait(false);
|
||||
if(_service.ActivePolls.TryRemove(channel.Guild.Id, out var poll))
|
||||
await poll.StopPoll().ConfigureAwait(false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -21,7 +21,7 @@ namespace NadekoBot.Core.Services.Impl
|
||||
private readonly IBotCredentials _creds;
|
||||
private readonly DateTime _started;
|
||||
|
||||
public const string BotVersion = "2.1.2";
|
||||
public const string BotVersion = "2.1.4";
|
||||
|
||||
public string Author => "Kwoth#2560";
|
||||
public string Library => "Discord.Net";
|
||||
|
@ -88,16 +88,19 @@ namespace NadekoBot.Core.Services
|
||||
{
|
||||
//add it to the list of shards which should be started
|
||||
#if DEBUG
|
||||
|
||||
if (i > 0)
|
||||
_shardStartQueue.Enqueue(i);
|
||||
else
|
||||
_shardProcesses[i] = Process.GetCurrentProcess();
|
||||
#else
|
||||
_shardStartQueue.Enqueue(i);
|
||||
#endif
|
||||
//set the shard's initial state in redis cache
|
||||
//set the shard's initial state in redis cache
|
||||
_defaultShardState.ShardId = i;
|
||||
//this is to avoid the shard coordinator thinking that
|
||||
//the shard is unresponsive while startup up
|
||||
_defaultShardState.Time = DateTime.UtcNow + TimeSpan.FromSeconds(20 * i);
|
||||
_defaultShardState.Time = DateTime.UtcNow + TimeSpan.FromSeconds(45 * (i + 1));
|
||||
db.ListRightPush(_key + "_shardstats",
|
||||
JsonConvert.SerializeObject(_defaultShardState),
|
||||
flags: CommandFlags.FireAndForget);
|
||||
@ -241,7 +244,7 @@ namespace NadekoBot.Core.Services
|
||||
await tsc.Task.ConfigureAwait(false);
|
||||
while (true)
|
||||
{
|
||||
await Task.Delay(10000).ConfigureAwait(false);
|
||||
await Task.Delay(15000).ConfigureAwait(false);
|
||||
try
|
||||
{
|
||||
var db = _redis.GetDatabase();
|
||||
|
Loading…
Reference in New Issue
Block a user