diff --git a/animeCat.js b/animeCat.js index 08960b8..b6a0229 100644 --- a/animeCat.js +++ b/animeCat.js @@ -215,7 +215,7 @@ _bindMouseHold() { const heldFor = Date.now() - mouseDownAt; if (heldFor > 1000) { // mind. 500ms oder (heldFor - 1000), je nachdem was größer ist - const mouthOpenTime = Math.max(heldFor - 1000, 100); + const mouthOpenTime = Math.max(heldFor - 1000, 1000); this.img.src = this.images.mouthOpen || this.images.default; this._startBlinking(); setTimeout(() => {