mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-09-08 11:15:32 -05:00
IIDX: Changed music.arenaCPU to make compatible with newer version
This commit is contained in:
@@ -967,7 +967,7 @@ export const musicarenacpu: EPR = async (info, data, send) => {
|
|||||||
total_notes.forEach((res) => {
|
total_notes.forEach((res) => {
|
||||||
score_list.push({
|
score_list.push({
|
||||||
score: K.ITEM("s32", _.random(res, res * 2)),
|
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_score: K.ITEM("bool", 1),
|
||||||
enable_ghost: K.ITEM("bool", 0),
|
enable_ghost: K.ITEM("bool", 0),
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user