Allow per-expansion login header fields + fix challenge FourCC encoding

This commit is contained in:
Kelsi 2026-02-13 00:48:56 -08:00
parent 58ad69d939
commit fd468ce793
5 changed files with 32 additions and 11 deletions

View file

@ -509,6 +509,11 @@ void AuthScreen::attemptAuth(auth::AuthHandler& authHandler) {
info.patchVersion = profile->patchVersion;
info.build = profile->build;
info.protocolVersion = profile->protocolVersion;
info.game = profile->game;
info.platform = profile->platform;
info.os = profile->os;
info.locale = profile->locale;
info.timezone = profile->timezone;
authHandler.setClientInfo(info);
}
}