Check every 5 minutes if it's 2021 instead of every hour in the stats handler
This commit is contained in:
parent
29bb8035fe
commit
01f0d2f43b
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ namespace Geekbot.Bot.Handlers
|
||||||
{
|
{
|
||||||
Enabled = true,
|
Enabled = true,
|
||||||
AutoReset = true,
|
AutoReset = true,
|
||||||
Interval = TimeSpan.FromHours(1).TotalMilliseconds
|
Interval = TimeSpan.FromMinutes(5).TotalMilliseconds
|
||||||
};
|
};
|
||||||
timer.Elapsed += (sender, args) =>
|
timer.Elapsed += (sender, args) =>
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue