Fix conditions

This commit is contained in:
Pierre HUBERT 2020-05-08 11:15:46 +02:00
parent 22cb2673a4
commit 03153ea474

View File

@ -16,7 +16,7 @@ async function checkManonBirthday(force) {
const date = new Date(); const date = new Date();
if(date.getMonth() != 4 && date.getDay() != 25) if(date.getMonth() != 4 || date.getDate() != 8)
return; return;
} }