From 31dc0dae15430f72e078349690b255d2ddf3a2eb Mon Sep 17 00:00:00 2001 From: ltadeu6 Date: Sun, 7 Jun 2026 09:57:26 -0300 Subject: [PATCH] Remove skeleton.apng from rotation Co-Authored-By: Claude Sonnet 4.6 --- plugin/contents/ui/dancer.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/contents/ui/dancer.html b/plugin/contents/ui/dancer.html index 3ba1740..73cfdf4 100644 --- a/plugin/contents/ui/dancer.html +++ b/plugin/contents/ui/dancer.html @@ -1017,9 +1017,9 @@ setInterval(nextDanceStyle, 8000); Add new files to SKELETONS to include them in the rotation. Switches on music change and randomly every 16 beats (8s). ============================================================ */ -const SKELETONS = ['skeleton.apng', 'skeleton2.apng', 'skeleton3.apng', 'skeleton4.apng', 'skeleton5.apng', 'skeleton6.apng']; +const SKELETONS = ['skeleton2.apng', 'skeleton3.apng', 'skeleton4.apng', 'skeleton5.apng', 'skeleton6.apng']; const skeletonImg = document.querySelector('.skeleton-gif'); -let currentSkel = 3; +let currentSkel = 2; // Preload all skeletons so switches are instant const _preloaded = SKELETONS.map(src => { const i = new Image(); i.src = src; return i; });