Fix logic

This commit is contained in:
Mister Rajoy
2021-01-16 14:50:17 +01:00
parent a4859c24ca
commit 577bed8f6b

View File

@@ -716,7 +716,7 @@
if (
(d.getDate() >= 18 && d.getMonth() == 11) ||
(d.getDate() >= 10 && d.getMonth() == 0)
(d.getDate() <= 10 && d.getMonth() == 0)
) {
startChristmas();
}