From 2dcdaf2b49b0a43b69cc92b9753b0c28c94afab6 Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Sun, 22 Feb 2026 16:46:03 -0500 Subject: [PATCH] Remove turns remaining counter from FINAL TURN badge Co-Authored-By: Claude Opus 4.6 --- client/app.js | 9 --------- client/index.html | 1 - 2 files changed, 10 deletions(-) diff --git a/client/app.js b/client/app.js index ee46149..c0e81d8 100644 --- a/client/app.js +++ b/client/app.js @@ -3448,15 +3448,6 @@ class GolfGame { // Toggle game area class for border pulse this.gameScreen.classList.add('final-turn-active'); - // Calculate remaining turns - const remaining = this.countRemainingTurns(); - - // Update badge content - const remainingEl = this.finalTurnBadge.querySelector('.final-turn-remaining'); - if (remainingEl) { - remainingEl.textContent = remaining === 1 ? '1 turn left' : `${remaining} turns left`; - } - // Show badge this.finalTurnBadge.classList.remove('hidden'); diff --git a/client/index.html b/client/index.html index 694b4ce..6f7fa64 100644 --- a/client/index.html +++ b/client/index.html @@ -303,7 +303,6 @@