Skip to content

Commit

Permalink
changed grouplb
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick-NCSU committed Jun 7, 2021
1 parent ba5c41d commit 494b425
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ client.on('message', async message => {
});
client.login(token).then(() => {
// Schedules the automatic daily leaderboards (Time in GMT)
cron.schedule("15 0 4 * * *", async function() {
cron.schedule("15 0 5 * * *", async function() {
const daily = [
'hypixel_sb',
'hypixel_sbce'
Expand All @@ -121,8 +121,8 @@ client.login(token).then(() => {
'mcm_hm',
'mcm_cd'
];
await commands.NewLeaderboard.grouplb(client.channels.cache.get('792473904391651369'), daily);
await commands.NewLeaderboard.grouplb(client.channels.cache.get('782073727881183304'), daily2);
await grouplb(client.channels.cache.get('792473904391651369'), daily);
await grouplb(client.channels.cache.get('782073727881183304'), daily2);
});

grouplb = async function grouplb(channel, games) {
Expand Down

0 comments on commit 494b425

Please sign in to comment.