Ver Fonte

Stop padoru after 25th

denikson há 6 anos atrás
pai
commit
eb333f8c89
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      commands/facemorph.js

+ 1 - 1
commands/facemorph.js

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