This commit is contained in:
JonnyBro 2021-12-30 01:10:49 +05:00
parent 4a4d51e734
commit aeaab7c23c

View file

@ -2,7 +2,7 @@ const CronJob = require("cron").CronJob,
Discord = require("discord.js"); Discord = require("discord.js");
async function init(client) { async function init(client) {
new CronJob("0 8 23 * * *", async function () { new CronJob("0 11 23 * * *", async function () {
client.guilds.cache.forEach(async (guild) => { client.guilds.cache.forEach(async (guild) => {
const date = new Date(); const date = new Date();
const currentMonth = date.getMonth() + 1; const currentMonth = date.getMonth() + 1;
@ -18,6 +18,7 @@ async function init(client) {
.find({ birthdate: { $gt: 1 } }) .find({ birthdate: { $gt: 1 } })
.then(async (users) => { .then(async (users) => {
for (const user of users) { for (const user of users) {
console.log(user.birthdate)
const month = user.birthdate.getUTCMonth() + 1; const month = user.birthdate.getUTCMonth() + 1;
const day = user.birthdate.getUTCDate(); const day = user.birthdate.getUTCDate();
if (currentMonth === month && currentDay === day) { if (currentMonth === month && currentDay === day) {