From f75a9a20eca90fa15b3ba070b366bacd0651212d Mon Sep 17 00:00:00 2001 From: ShakeFlower Date: Wed, 24 Sep 2025 10:45:14 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E6=AD=A3=E7=82=B9=E5=87=BB?= =?UTF-8?q?=E8=B7=B3=E8=BF=87=E5=89=A7=E6=83=85=E9=80=89=E9=A1=B9=E6=B2=A1?= =?UTF-8?q?=E6=9C=89=E7=AB=8B=E5=8D=B3=E5=88=B7=E6=96=B0=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- project/plugins.js | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/project/plugins.js b/project/plugins.js index abbc3817..2e149b66 100644 --- a/project/plugins.js +++ b/project/plugins.js @@ -4805,13 +4805,19 @@ var plugins_bb40132b_638b_4a9f_b028_d3fe47acc8d1 = }, skipText: { getName: () => '跳过剧情:' + (core.getLocalStorage('skipText', false) ? '开' : '关'), - effect: () => { invertLocalStorage('skipText'); }, + effect: () => { + invertLocalStorage('skipText'); + checkSkipFuncs(); + }, text: '跳过全部文字对话。初见请勿开启此选项。', replay: false, }, skipPeform: { getName: () => '跳过演出:' + (core.getLocalStorage('skipPerform', false) ? '开' : '关'), - effect: () => { invertLocalStorage('skipPerform'); }, + effect: () => { + invertLocalStorage('skipPerform'); + checkSkipFuncs(); + }, text: '加速等待、播放动画等常见演出效果。', replay: false, },