1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-24 16:17:44 +00:00

Entitle the user to Dawntrail

This gives you the Dawntrail intro screen instead of the Endwalker one.
This commit is contained in:
Joshua Goins 2025-03-22 18:08:14 -04:00
parent ff7d096d5d
commit e4203c0ead
2 changed files with 2 additions and 2 deletions

View file

@ -46,7 +46,7 @@ async fn login_send(
let user = state.database.login_user(&input.sqexid, &input.password); let user = state.database.login_user(&input.sqexid, &input.password);
match user { match user {
Ok(session_id) => Html(format!( Ok(session_id) => Html(format!(
"window.external.user(\"login=auth,ok,sid,{session_id},terms,1,region,2,etmadd,0,playable,1,ps3pkg,0,maxex,4,product,1\");" "window.external.user(\"login=auth,ok,sid,{session_id},terms,1,region,2,etmadd,0,playable,1,ps3pkg,0,maxex,5,product,1\");"
)), )),
Err(err) => { Err(err) => {
// TODO: see what the official error messages are // TODO: see what the official error messages are

View file

@ -236,7 +236,7 @@ impl LobbyConnection {
days_to_next_rank: 0, days_to_next_rank: 0,
unk8: 8, unk8: 8,
max_characters_on_world: 2, max_characters_on_world: 2,
entitled_expansion: 4, entitled_expansion: 5,
characters: characters_in_packet, characters: characters_in_packet,
} }
} else { } else {