Fix date for D.I.E.

This commit is contained in:
swagg boi 2021-11-21 01:05:43 -05:00
parent 7188f1bbaf
commit b690b70444

View file

@ -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);