From 1771619a3cf4e246d2881b50500237e7abbf3b9a Mon Sep 17 00:00:00 2001 From: Thome Valentin Date: Thu, 28 Apr 2022 13:55:36 +0200 Subject: [PATCH] Removed information.info field (seems to be unused by the game) --- gitadora@asphyxia/handlers/profiles.ts | 15 +++------------ gitadora@asphyxia/models/extra.ts | 1 - 2 files changed, 3 insertions(+), 13 deletions(-) diff --git a/gitadora@asphyxia/handlers/profiles.ts b/gitadora@asphyxia/handlers/profiles.ts index 8b811b3..38a3cf5 100644 --- a/gitadora@asphyxia/handlers/profiles.ts +++ b/gitadora@asphyxia/handlers/profiles.ts @@ -387,19 +387,11 @@ export const getPlayer: EPR = async (info, data, send) => { chara_list: {}, title_parts: {}, information: { - info: K.ARRAY('u32', extra.information_info ?? Array(50).fill(0)), + info: K.ARRAY('u32', Array(50).fill(0)), }, reward: { - // status: K.ARRAY('u32', extra.reward_status ?? Array(50).fill(0)), - status: K.ARRAY('u32', Array(50).fill(0)), - }, - /* - trbitem: { - item: { - itemid: K.ITEM('s32', 707) - } - }, - */ + status: K.ARRAY('u32', Array(50).fill(0)), + }, rivaldata: {}, frienddata: {}, thanks_medal: { @@ -741,7 +733,6 @@ async function registerUser(refid: string, version: string, id = _.random(0, 999 list_3: Array(100).fill(-1), recommend_musicid_list: Array(5).fill(-1), reward_status: Array(50).fill(0), - information_info: Array(50).fill(0), } } diff --git a/gitadora@asphyxia/models/extra.ts b/gitadora@asphyxia/models/extra.ts index c2a8342..5a2ad6e 100644 --- a/gitadora@asphyxia/models/extra.ts +++ b/gitadora@asphyxia/models/extra.ts @@ -13,5 +13,4 @@ export interface Extra { list_3: number[]; recommend_musicid_list: number[]; reward_status: number[]; - information_info: number[]; } \ No newline at end of file