From 8f6def90b17d14ad130ecd4fe2335b696c4c7cfc Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Mon, 26 May 2025 04:53:08 +0200 Subject: [PATCH] Adjust mouth open time calculation in animeCat.js --- animeCat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/animeCat.js b/animeCat.js index 0132b8b..4018cc0 100644 --- a/animeCat.js +++ b/animeCat.js @@ -213,7 +213,7 @@ _bindMouseHold() { mouseDown = false; reopenEyes(); const heldFor = Date.now() - mouseDownAt; - const mouthOpenTime = Math.max(heldFor - 1000, 0) < 500 ? 500 : Math.max(heldFor - 1000, 0); + const mouthOpenTime = Math.max(heldFor - 1000, 700); if (mouthOpenTime > 0) { this.img.src = this.images.mouthOpen || this.images.default; this._startBlinking();