Wire authManager into GolfGame instance for WebSocket token auth

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
adlee-was-taken 2026-02-21 20:32:49 -05:00
parent 62e3dc0395
commit bae5d8da3c

View File

@ -4458,6 +4458,7 @@ class GolfGame {
document.addEventListener('DOMContentLoaded', () => {
window.game = new GolfGame();
window.auth = new AuthManager(window.game);
window.game.authManager = window.auth;
});