Skip to content

Commit 04bb31f

Browse files
committed
修复协奏判断错误
1 parent f9ffd6e commit 04bb31f

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,11 @@ jobs:
111111
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
112112
with:
113113
body: |
114-
下载 ok-ww.7z, Download ok-ww.7z
115-
不要下载SourceCode Do Not Download the SourceCode
114+
* 下载 ok-ww.7z, Download ok-ww.7z
115+
* 不要下载SourceCode Do Not Download the SourceCode
116+
* 如果下载过慢可以使用加速或者使用下面渠道下载
117+
* [Mirror酱下载渠道](https://mirrorchyan.com/zh/projects?rid=okww), 国内网页直链, 下载需要购买CD-KEY, 已有Mirror酱CD-KEY可免费下载
118+
* [夸克网盘](https://pan.quark.cn/s/a1052cec4d13), 免费, 但需要注册并下载夸克网盘客户端
116119
117120
draft: false
118121
prerelease: false

README_cn.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,11 @@
3232

3333
### 使用说明
3434

35-
* 点击[releases](https://github.com/ok-oldking/ok-wuthering-waves/releases), 下载7z压缩包(200M左右的), 解压缩双击运行.exe
35+
* 下载7z压缩包(200M左右的), 解压缩双击运行.exe
36+
* [GitHub下载](https://github.com/ok-oldking/ok-wuthering-waves/releases), 免费网页直链
37+
* [Mirror酱下载渠道](https://mirrorchyan.com/zh/projects?rid=okww), 国内网页直链, 下载需要购买CD-KEY,
38+
已有Mirror酱CD-KEY可免费下载
39+
* [夸克网盘](https://pan.quark.cn/s/a1052cec4d13), 免费, 但需要注册并下载夸克网盘客户端
3640

3741
### 有多强?
3842

@@ -76,7 +80,8 @@ ok-ww.exe -t 1 -e
7680

7781
## 赞助商
7882

79-
- EXE签名: Free code signing provided by [SignPath.io](https://signpath.io/), certificate by [SignPath Foundation](https://signpath.org/)
83+
- EXE签名: Free code signing provided by [SignPath.io](https://signpath.io/), certificate
84+
by [SignPath Foundation](https://signpath.org/)
8085

8186
### 加入我们
8287

src/task/BaseCombatTask.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def switch_next_char(self, current_char, post_action=None, free_intro=False, tar
286286
now = time.time()
287287
if not switch_to.has_intro:
288288
_, current_index, _ = self.in_team()
289-
switch_to.has_intro = current_index == current_char.index
289+
switch_to.has_intro = current_index == current_char.index and current_char.is_con_full()
290290
if now - last_click > 0.1:
291291
self.send_key(switch_to.index + 1)
292292
last_click = now

0 commit comments

Comments
 (0)