From d9cca1cfaa8db01490986f0a72da847a914da652 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=BA=81=E5=8A=A8=E7=9A=84=E6=B0=A8=E6=B0=94?= <131591012+zaodonganqi@users.noreply.github.com> Date: Mon, 1 Dec 2025 22:22:15 +0800 Subject: [PATCH] Dev (#2424) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * 千星支持非成就模式与收藏模式 * 紧急修复 --- repo/js/WeeklyThousandStarRealm/main.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/repo/js/WeeklyThousandStarRealm/main.js b/repo/js/WeeklyThousandStarRealm/main.js index 5a3c6ae88..3f33a0692 100644 --- a/repo/js/WeeklyThousandStarRealm/main.js +++ b/repo/js/WeeklyThousandStarRealm/main.js @@ -306,7 +306,9 @@ async function playMap() { } } - await deleteSource(); + if (achievementMode) { + await deleteSource(); + } for (let i = 1; i < total; i++) { const inRoom = await findText("房间", 1500, 0, 420, 500); @@ -355,7 +357,9 @@ async function playMap() { await sleep(interval); } } - await deleteSource(); + if (achievementMode) { + await deleteSource(); + } } } }