Skip to content
Open
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion AquaMai.Mods/GameSystem/SinglePlayer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ public static void PostDecideEntry(EntryMonitor __instance)
TimeManager.MarkGameStartTime();
Singleton<EventManager>.Instance.UpdateEvent();
Singleton<ScoreRankingManager>.Instance.UpdateData();
if(GameInfo.GameVersion >= 25000 && GameInfo.GameId == "SDEZ") {Singleton<OperationManager>.Instance.DownloadMusicScore();}
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这么写,在 1.45 及以下版本上测试过吗

Copy link
Copy Markdown
Author

@SoulGateKey SoulGateKey Aug 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

已在1.55测试,musicscore可以正常触发下载
以及25000不是1.50吗

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

如果版本低于25000(1.50)并且不是sdez的话 不会启用
这个api随着kaleidxscope的加入而加入

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

是啊,我说的是 1.45 及以下版本

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

1.45以下版本if不会被触发不就没事了(

Copy link
Copy Markdown
Author

@SoulGateKey SoulGateKey Aug 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

已在1.45 1.40 版本测试,未发现明显异常

SharedInstances.GameMainObject.StartCoroutine(LaterDisableCardReader());
__instance.Process.CreateDownloadProcess();
__instance.ProcessManager.SendMessage(new Message(ProcessType.CommonProcess, 30001));
Expand Down Expand Up @@ -137,4 +138,4 @@ public static void OnAfterPatch()
{
Core.Helpers.GuiSizes.SinglePlayer = true;
}
}
}
Loading