1
0

Fix issue with petting state in animeCat.js

This commit is contained in:
2025-05-26 04:25:02 +02:00
parent eff8eaf8a3
commit a424189a83

View File

@@ -218,7 +218,7 @@ _bindMouseHold() {
this.img.src = this.images.mouthOpen || this.images.default;
this._startBlinking();
setTimeout(() => {
if (!joyActive && !this._isSpeaking) this.img.src = this.images.default;
if (!joyActive && !this._isSpeaking && !this._pettingActive) this.img.src = this.images.default;
}, mouthOpenTime);
}
else {