Skip to content

Commit

Permalink
jobs: add hint for using the month
Browse files Browse the repository at this point in the history
  • Loading branch information
Rexogamer authored Sep 6, 2020
1 parent 810b2cc commit 58546ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Internals/jobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ scheduleJob("0 20 * * 0", async() => {
client.log(`🏆 ${user.username} (${user.id}) won ${prize} VIP Month(s) for being ${winners.length === 1 ? "the" : "a"} highest voter.`);

await user.createDM();
user.send({ embed: { color: config.colors.info, title: "Congratulations!", description: `You have received ${prize} VIP Months for being ${winners.length === 1 ? "the" : "a"} highest voter this month.` } }).catch(e => null);
user.send({ embed: { color: config.colors.info, title: "Congratulations!", description: `You have received ${prize} VIP Month(s) for being ${winners.length === 1 ? "the" : "a"} highest voter this month.`, footer: { title: "You can now make any number of your choice VIP by using >upgrade." } } }).catch(e => null);
}

// Make the announcement embed
Expand Down

0 comments on commit 58546ee

Please sign in to comment.