Compare commits

...

2 Commits

Author SHA1 Message Date
71174e8477 Speed up ambient drift 2025-12-10 15:56:08 -05:00
f90662814a Increase ambient drift frequency 2025-12-10 15:55:36 -05:00

View File

@ -407,7 +407,7 @@ function stopAmbientDrift() {
}
function scheduleAmbientDrift() {
const delay = 26000 + Math.random() * 18000; // 2644s
const delay = 10000 + Math.random() * 10000; // 1020s
fireflyTimer = setTimeout(() => {
if (!animationsEnabled) { stopAmbientDrift(); return; }
if (isDarkMode) {