Browse Source

Stop padoru after 25th

denikson 6 years ago
parent
commit
eb333f8c89
1 changed files with 1 additions and 1 deletions
  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());
 }