1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 12:08:21 +08:00

Add: 适配第一章, 修复大量bug

- 修复处理夜间委托时, 出现递归调用的问题
- 增加红脸出击确认的功能
- 增加了透视识别错误图片保存的开关
- 修复了地图太小时, 透视识别报错的问题
- 修复了相机位于地图外时, 透视识别出错的问题
- 修复了离开退役时, 会连击的问题
- 修复了同时出现低心情和船坞已满弹窗时, 卡住的问题
- 更新了一键退役实装后的安全点击的位置
- 修复了换装滑动失败时, 卡住的问题
- 修复了关闭自动收获后, 出现委托完成的提示是, 进图卡住的问题
- 修复了, 无正在跑的委托时, 报错的问题
This commit is contained in:
LmeSzinc
2020-04-11 15:23:51 +08:00
parent f1c2d182db
commit be00742c3c
29 changed files with 246 additions and 42 deletions

View File

@@ -111,6 +111,8 @@ class Lines:
def add(self, other):
if not other:
return self
if not self:
return other
lines = np.append(self.lines, other.lines, axis=0)
return Lines(lines, is_horizontal=self.is_horizontal, config=self.config)