This repository was archived by the owner on May 25, 2022. It is now read-only.
File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -28,19 +28,19 @@ public async Task StartAsync(string[] args)
28
28
}
29
29
_client = new DiscordSocketClient ( new DiscordSocketConfig
30
30
{
31
- LogLevel = LogSeverity . Verbose
31
+ LogLevel = LogSeverity . Info
32
32
} ) ;
33
33
_client . Log += Log ;
34
34
await _client . LoginAsync ( TokenType . Bot , Config . Bot . Token ) ;
35
35
await _client . StartAsync ( ) ;
36
36
_handler = new CommandHandler ( ) ;
37
37
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.
39
39
await Sheets . UpdateRoles ( _client ) ; // forces update initially on all servers
40
40
Console . WriteLine ( "Starting sheet checking loop" ) ;
41
41
while ( true )
42
42
{
43
- await Task . Delay ( ( int ) Math . Pow ( 1000 , 2.19 ) ) ; // ~ an hour between updates
43
+ await Task . Delay ( 3600000 ) ; // an hour between updates
44
44
await Sheets . CheckSheets ( _client ) ;
45
45
}
46
46
}
Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ await u.ModifyAsync(x =>
125
125
}
126
126
catch
127
127
{
128
- Console . WriteLine ( "No nickname specified" ) ;
128
+ Console . WriteLine ( "No nickname specified or their rank is too high. " ) ;
129
129
}
130
130
}
131
131
@@ -159,9 +159,9 @@ public static async Task CheckSheets(DiscordSocketClient client)
159
159
// Checking if the newly retrieved sheet is the same as the previous one
160
160
if ( values . Count == _previousSheetValues . Count )
161
161
{
162
- for ( int i = 0 ; i > values . Count - 1 ; i ++ )
162
+ for ( int i = 0 ; i < values . Count ; i ++ )
163
163
{
164
- for ( int x = 0 ; x > values [ i ] . Count - 1 ; i ++ )
164
+ for ( int x = 0 ; x < values [ i ] . Count ; x ++ )
165
165
{
166
166
if ( ! values [ i ] [ x ] . Equals ( _previousSheetValues [ i ] [ x ] ) )
167
167
{
You can’t perform that action at this time.
0 commit comments