From 56d6350c7130b06e82143183d1c81b59b5180b7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=A7=8B=E4=BA=91?= Date: Mon, 26 May 2025 18:27:44 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=85=BC=E5=AE=B9=E8=80=81=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- repo/js/AcceleratedEditionSwitchParty/main.js | 2 +- repo/js/AcceleratedEditionSwitchParty/settings.json | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/repo/js/AcceleratedEditionSwitchParty/main.js b/repo/js/AcceleratedEditionSwitchParty/main.js index 578e2237..ea6acda6 100644 --- a/repo/js/AcceleratedEditionSwitchParty/main.js +++ b/repo/js/AcceleratedEditionSwitchParty/main.js @@ -152,7 +152,7 @@ const RightSliderBottomRo = RecognitionObject.TemplateMatch(file.ReadImageMatSyn } // Main if (!!settings.partyName) { try { - if (settings.forceGoStatue) { + if (!settings.disableGoStatue) { // 强制去七天神像换队 log.info("强制传送到七天神像切换队伍"); await genshin.TpToStatueOfTheSeven(); diff --git a/repo/js/AcceleratedEditionSwitchParty/settings.json b/repo/js/AcceleratedEditionSwitchParty/settings.json index 99d15f3c..e655a17d 100644 --- a/repo/js/AcceleratedEditionSwitchParty/settings.json +++ b/repo/js/AcceleratedEditionSwitchParty/settings.json @@ -3,10 +3,11 @@ "name": "partyName", "type": "input-text", "label": "需要切换的队伍名称" - }, { - "name": "forceGoStatue", + }, + { + "name": "disableGoStatue", "type": "checkbox", - "label": "强制传送到七天神像换队" + "label": "关闭前往七天神像" }, { "name": "enableDebug",