From 35d7c2243d998a5112eb48bc27b4fe316daa346f Mon Sep 17 00:00:00 2001 From: Sami Date: Sat, 2 Aug 2025 01:08:11 -0400 Subject: [PATCH] Sound effect... WHAAAT? - filename mismatch :/ --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index 0e9d605..15fbc4e 100644 --- a/script.js +++ b/script.js @@ -241,7 +241,7 @@ function shakeTiles(tiles) { } // The CELEBRATION SOUND EFFECT function playCelebrationSound() { - const audio = new Audio('celebration.mp3') + const audio = new Audio('Celebration.mp3') audio.volume = 0.5 // Adjust volume as needed audio.play().catch(error => { console.error('Error playing celebration sound:', error)