Skip to content

Commit

Permalink
Add a hidden check loop
Browse files Browse the repository at this point in the history
Just used to check for a few things
  • Loading branch information
byBlurr committed Jan 20, 2021
1 parent ff34c8c commit 92ce2ff
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -337,4 +337,5 @@ ASALocalRun/
.localhistory/

# BeatPulse healthcheck temp database
healthchecksdb
healthchecksdb
LorisAngel/Utility/Checks.cs
1 change: 1 addition & 0 deletions LorisAngel/Files/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- Added Tic Tac Toe (-help tictactoe)
- Added Snakes and Ladders (TODO)
- Added tempban command (-help tempban)
- Adjusted status timer

# Version 2.0.2 - Minor Tweaks and Fixes
- Added moderator commands (-help moderation)
Expand Down
3 changes: 2 additions & 1 deletion LorisAngel/LCommandHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,13 @@ private async Task ReadyAsync()
break;
}
}
await Task.Delay(15000);
await Task.Delay(60000);
}
});

await ProfileDatabase.ProcessUsers();
await ModerationDatabase.ProcessBansAsync();
await Checks.CheckAsync();
}

private async Task JoinedGuildAsync(SocketGuild guild)
Expand Down

0 comments on commit 92ce2ff

Please sign in to comment.