This commit is contained in:
MrLetsplay 2024-03-08 19:54:36 +01:00
parent 9958c6e872
commit dd5056a16c
Signed by: mr
SSH Key Fingerprint: SHA256:92jBH80vpXyaZHjaIl47pjRq+Yt7XGTArqQg1V7hSqg

View File

@ -4,8 +4,8 @@ let OVERRIDE_APRIL_FOOLS = false;
setInterval(() => { setInterval(() => {
const theTime = new Date(); const theTime = new Date();
if (!OVERRIDE_APRIL_FOOLS && (theTime.getDate() != 1 || theTime.getMonth() != 3)) { if (!OVERRIDE_APRIL_FOOLS && (theTime.getDate() != 1 || theTime.getMonth() != 3)) {
document.body.style.transition = undefined; document.body.style.transition = "unset";
document.body.style.transform = undefined; document.body.style.transform = "unset";
return; return;
} }