Skip to content
This repository was archived by the owner on May 25, 2022. It is now read-only.

Commit f230777

Browse files
committed
Auto-Update fixed, more accurate delay
Fixed an issue that prevented the auto-update from functioning properly. Delay is now 1 hour instead of 1 hour plus a couple of minutes.
1 parent 063b66b commit f230777

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

DiscordBot/Program.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,19 @@ public async Task StartAsync(string[] args)
2828
}
2929
_client = new DiscordSocketClient(new DiscordSocketConfig
3030
{
31-
LogLevel = LogSeverity.Verbose
31+
LogLevel = LogSeverity.Info
3232
});
3333
_client.Log += Log;
3434
await _client.LoginAsync(TokenType.Bot, Config.Bot.Token);
3535
await _client.StartAsync();
3636
_handler = new CommandHandler();
3737
await _handler.InitializeAsync(_client);
38-
await Task.Delay(1000);
38+
await Task.Delay(1000); // delay so update roles doesn't run before connecting to server.
3939
await Sheets.UpdateRoles(_client); // forces update initially on all servers
4040
Console.WriteLine("Starting sheet checking loop");
4141
while (true)
4242
{
43-
await Task.Delay((int)Math.Pow(1000, 2.19)); // ~an hour between updates
43+
await Task.Delay(3600000); // an hour between updates
4444
await Sheets.CheckSheets(_client);
4545
}
4646
}

DiscordBot/Sheets.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ await u.ModifyAsync(x =>
125125
}
126126
catch
127127
{
128-
Console.WriteLine("No nickname specified");
128+
Console.WriteLine("No nickname specified or their rank is too high.");
129129
}
130130
}
131131

@@ -159,9 +159,9 @@ public static async Task CheckSheets(DiscordSocketClient client)
159159
// Checking if the newly retrieved sheet is the same as the previous one
160160
if (values.Count == _previousSheetValues.Count)
161161
{
162-
for (int i = 0; i > values.Count - 1; i++)
162+
for (int i = 0; i < values.Count; i++)
163163
{
164-
for (int x = 0; x > values[i].Count - 1; i++)
164+
for (int x = 0; x < values[i].Count; x++)
165165
{
166166
if (!values[i][x].Equals(_previousSheetValues[i][x]))
167167
{

0 commit comments

Comments
 (0)