From bc4b54dfd8a45a881ed398f79d6085edf549a09f Mon Sep 17 00:00:00 2001 From: duel0213 Date: Sat, 25 Jan 2025 12:07:38 +0900 Subject: [PATCH] IIDX: Changed music.arenaCPU to make compatible with newer version --- iidx@asphyxia/handlers/music.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iidx@asphyxia/handlers/music.ts b/iidx@asphyxia/handlers/music.ts index 2889dc3..23a207a 100644 --- a/iidx@asphyxia/handlers/music.ts +++ b/iidx@asphyxia/handlers/music.ts @@ -967,7 +967,7 @@ export const musicarenacpu: EPR = async (info, data, send) => { total_notes.forEach((res) => { score_list.push({ score: K.ITEM("s32", _.random(res, res * 2)), - ghost: K.ITEM("u8", 0), + ghost: version > 30 ? K.ITEM("s8", 0) : K.ITEM("u8", 0), enable_score: K.ITEM("bool", 1), enable_ghost: K.ITEM("bool", 0), });