From 634d101f2cc7f9e7c1c304701c96ff560f4977b5 Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Sun, 22 Feb 2026 16:31:00 -0500 Subject: [PATCH] Play pair chime sound for all players including local player firePairCelebration was only doing the visual animation but not playing the pair sound. The sound was only played during score tallying. Co-Authored-By: Claude Opus 4.6 --- client/app.js | 1 + 1 file changed, 1 insertion(+) diff --git a/client/app.js b/client/app.js index c67f899..4817af9 100644 --- a/client/app.js +++ b/client/app.js @@ -2602,6 +2602,7 @@ class GolfGame { const elements = this.getCardElements(playerId, pos1, pos2); if (elements.length < 2) return; + this.playSound('pair'); if (window.cardAnimations) { window.cardAnimations.celebratePair(elements[0], elements[1]); }