.repinv now posts in the channel repeater originates from, not current one

This commit is contained in:
Kwoth 2017-04-10 02:53:36 +02:00
parent a0e363ff66
commit bece18dffc

View File

@ -36,6 +36,7 @@ namespace NadekoBot.Modules.Utility
public Repeater Repeater { get; } public Repeater Repeater { get; }
public SocketGuild Guild { get; } public SocketGuild Guild { get; }
public ITextChannel Channel { get; private set; } public ITextChannel Channel { get; private set; }
private IUserMessage oldMsg = null;
public RepeatRunner(Repeater repeater, ITextChannel channel = null) public RepeatRunner(Repeater repeater, ITextChannel channel = null)
{ {
@ -52,14 +53,23 @@ namespace NadekoBot.Modules.Utility
{ {
source = new CancellationTokenSource(); source = new CancellationTokenSource();
token = source.Token; token = source.Token;
IUserMessage oldMsg = null;
try try
{ {
while (!token.IsCancellationRequested) while (!token.IsCancellationRequested)
{ {
var toSend = "🔄 " + Repeater.Message;
await Task.Delay(Repeater.Interval, token).ConfigureAwait(false); await Task.Delay(Repeater.Interval, token).ConfigureAwait(false);
await Trigger().ConfigureAwait(false);
}
}
catch (OperationCanceledException)
{
}
}
public async Task Trigger()
{
var toSend = "🔄 " + Repeater.Message;
//var lastMsgInChannel = (await Channel.GetMessagesAsync(2)).FirstOrDefault(); //var lastMsgInChannel = (await Channel.GetMessagesAsync(2)).FirstOrDefault();
// if (lastMsgInChannel.Id == oldMsg?.Id) //don't send if it's the same message in the channel // if (lastMsgInChannel.Id == oldMsg?.Id) //don't send if it's the same message in the channel
// continue; // continue;
@ -96,11 +106,6 @@ namespace NadekoBot.Modules.Utility
_log.Warn(ex); _log.Warn(ex);
} }
} }
}
catch (OperationCanceledException)
{
}
}
public void Reset() public void Reset()
{ {
@ -176,9 +181,10 @@ namespace NadekoBot.Modules.Utility
return; return;
} }
var repeater = repList[index].Repeater; var repeater = repList[index].Repeater;
repList[index].Reset(); repList[index].Reset();
await Context.Channel.SendMessageAsync("🔄 " + repeater.Message).ConfigureAwait(false); await repList[index].Trigger();
await Context.Channel.SendMessageAsync("🔄").ConfigureAwait(false);
} }
[NadekoCommand, Usage, Description, Aliases] [NadekoCommand, Usage, Description, Aliases]