Parcourir la source

Stop padoru after 25th

denikson il y a 6 ans
Parent
commit
eb333f8c89
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      commands/facemorph.js

+ 1 - 1
commands/facemorph.js

@@ -101,7 +101,7 @@ async function captionFace(faces, data) {
  */
 function getPadoruChance() {
     let now = new Date();
-    if(now.getUTCMonth() != 11 || now.getUTCDate() > 26)
+    if(now.getUTCMonth() != 11 || now.getUTCDate() > 25)
         return 0;
     return 1 / (27.0 - now.getUTCDate());
 }