Fixed animation limit

canary
WolverinDEV 2020-11-10 16:16:51 +01:00
parent 658b44ed1d
commit bfd006c9d0
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ export async function initialize(customLoadingAnimations: boolean) {
/* Note, the months start with zero */
if(now.getMonth() === 9) {
animationType = "halloween";
} else if(now.getMonth() === 10 && now.getDay() <= 5) {
} else if(now.getMonth() === 10 && now.getDate() <= 5) {
animationType = "halloween";
}
}