Move static resources into their own directories

This commit is contained in:
csd4ni3l
2025-11-01 18:13:09 +01:00
parent e7293aeb09
commit cf70384239
10 changed files with 16 additions and 15 deletions

View File

@@ -57,7 +57,7 @@ function update() {
let year = current_time.getFullYear();
const halloween_time = new Date(year, 9, 31);
const after_halloween = new Date(year, 15, 1);
const after_halloween = new Date(year, 10, 1);
if (current_time > halloween_time) {
if (current_time < after_halloween) {
@@ -65,7 +65,7 @@ function update() {
return;
}
else {
halloween.setFullYear(year + 1);
halloween_time.setFullYear(year + 1);
}
}