Fix realm list by updating auth handler during REALM_SELECTION state

This commit is contained in:
Kelsi 2026-02-05 13:59:33 -08:00
parent eda70e9c6f
commit 1383e6c159

View file

@ -328,7 +328,9 @@ void Application::update(float deltaTime) {
break;
case AppState::REALM_SELECTION:
// Realm selection update
if (authHandler) {
authHandler->update(deltaTime);
}
break;
case AppState::CHARACTER_SELECTION: