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; });