From b7df5d1c64e810153df88b151dcef0f4de2d6a55 Mon Sep 17 00:00:00 2001 From: duel0213 Date: Tue, 27 Feb 2024 12:27:03 +0900 Subject: [PATCH] IIDX: Removed shop.savename as not working as intented --- iidx@asphyxia/README.md | 1 + iidx@asphyxia/handlers/shop.ts | 24 +++++++----------------- 2 files changed, 8 insertions(+), 17 deletions(-) diff --git a/iidx@asphyxia/README.md b/iidx@asphyxia/README.md index 6f8b8dd..c2ec707 100644 --- a/iidx@asphyxia/README.md +++ b/iidx@asphyxia/README.md @@ -114,3 +114,4 @@ Changelogs - Fixed where shop name always displayed as "CORE" instead of saved one - Fixed where rlist STEP UP achieve value was fixed value instead of saved one - Fixed where fcombo isn't saving (Resort Anthem) + - Removed shop.savename as not working as intented. \ No newline at end of file diff --git a/iidx@asphyxia/handlers/shop.ts b/iidx@asphyxia/handlers/shop.ts index d06be13..6393346 100644 --- a/iidx@asphyxia/handlers/shop.ts +++ b/iidx@asphyxia/handlers/shop.ts @@ -10,7 +10,7 @@ export const shopgetname: EPR = async (info, data, send) => { await DB.Insert({ collection: "shop_data", - opname: "CORE", + opname: "CORE", pid: 57, cls_opt: 0, }); @@ -18,12 +18,13 @@ export const shopgetname: EPR = async (info, data, send) => { return send.object( K.ATTR({ status: "0", - opname: "CORE", + opname: "CORE", pid: "57", cls_opt: "0", hr: "0", mi: "0", - }) + }), + { encoding: "shift_jis" } ); } @@ -35,24 +36,13 @@ export const shopgetname: EPR = async (info, data, send) => { cls_opt: String(shop_data.cls_opt), hr: "0", mi: "0", - }) + }), + { encoding: "shift_jis" } ); }; export const shopsavename: EPR = async (info, data, send) => { - await DB.Upsert( - { - collection: "shop_data", - }, - { - $set: { - opname: $(data).attr().opname, - pid: parseInt($(data).attr().pid), - cls_opt: parseInt($(data).attr().cls_opt), - }, - } - ); - + // removed saving code as opname attribute being sent as shift_jis but KDataReader read as utf-8 // return send.success(); };