Fix live page.

This commit is contained in:
yukirij 2024-08-16 17:10:04 -07:00
parent 9a840f0a02
commit 303fa26132
2 changed files with 2 additions and 4 deletions

View File

@ -349,8 +349,6 @@ const SCENES = {
Live:{
load() {
if(CONTEXT.Auth === null) return false;
CONTEXT.Data = {
page:0,
records:[],

View File

@ -331,8 +331,8 @@ function MESSAGE_COMPOSE(data) {
function MESSAGE_SESSION_LIST(page, game_state, is_player, is_live) {
let flags = 0;
flags |= game_state;
flags |= +is_player << 2;
flags |= +is_live << 3;
flags |= (+is_player) << 2;
flags |= (+is_live) << 3;
MESSAGE_COMPOSE([
PACK.u16(OpCode.SessionList),