From b690b70444f744411f01f803149b92b2e4bf829a Mon Sep 17 00:00:00 2001 From: swaggboi Date: Sun, 21 Nov 2021 01:05:43 -0500 Subject: [PATCH] Fix date for D.I.E. --- public/js/die.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/js/die.js b/public/js/die.js index 714f474..50c48c8 100644 --- a/public/js/die.js +++ b/public/js/die.js @@ -25,7 +25,7 @@ */ // Set the date we're counting down to -var countDownDate = new Date("Aug 17, 2021 00:00:00").getTime(); +var countDownDate = new Date("Jun 15, 2022 00:00:00").getTime(); // Update the count down every 1 second (var x is needed for // clearInterval() later) @@ -51,6 +51,6 @@ var x = setInterval(function () { if (distance < 0) { clearInterval(x); document.getElementById("dethKlok").innerHTML = - "DONE. Deprecated as of Aug 17, 2021 💀"; + "DONE. Deprecated as of Jun 15, 2022 💀"; } }, 1000);