From 4cb683581ac3c44fd07b53cae2bdc89dc5a36129 Mon Sep 17 00:00:00 2001 From: Mohammed Al-yaseen Date: Thu, 15 May 2025 01:57:54 +0300 Subject: [PATCH] Adjust meow sound volume in cat-animation.js from 0.1 to 0.05 for improved audio balance. --- js/cat-animation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/cat-animation.js b/js/cat-animation.js index 0898b91..f394d1b 100644 --- a/js/cat-animation.js +++ b/js/cat-animation.js @@ -32,7 +32,7 @@ class Cat { this.sounds.meow = new Audio('sounds/meow.wav'); // Set volume for each sound - this.sounds.meow.volume = 0.1; + this.sounds.meow.volume = 0.05; this.sounds.paw.volume = 0; // Add error handling for each sound