Fixed animation limit
parent
658b44ed1d
commit
bfd006c9d0
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue