From bae5d8da3c76b09d64f8b11861e5f9f72e1c41e9 Mon Sep 17 00:00:00 2001 From: adlee-was-taken Date: Sat, 21 Feb 2026 20:32:49 -0500 Subject: [PATCH] Wire authManager into GolfGame instance for WebSocket token auth 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 37b68f9..bf4475b 100644 --- a/client/app.js +++ b/client/app.js @@ -4458,6 +4458,7 @@ class GolfGame { document.addEventListener('DOMContentLoaded', () => { window.game = new GolfGame(); window.auth = new AuthManager(window.game); + window.game.authManager = window.auth; });