mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-23 04:03:43 +08:00
Fix: 修复一些bug
- 修复了日常结束后不收菜的问题 - 修复登录 - 增加不能使用潜艇的地图的覆盖设置 - 修复了因图片不更新导致二队不会跳过阵容检查的问题 - 修复了一些过场图导致进入战斗判断错误的问题
This commit is contained in:
5
alas.py
5
alas.py
@@ -45,7 +45,7 @@ class AzurLaneAutoScript:
|
||||
"""
|
||||
Method to run daily missions.
|
||||
"""
|
||||
flag = False
|
||||
flag = True
|
||||
|
||||
if self.config.ENABLE_DAILY_MISSION:
|
||||
from module.daily.daily import Daily
|
||||
@@ -53,6 +53,7 @@ class AzurLaneAutoScript:
|
||||
if not az.record_executed_since():
|
||||
az.run()
|
||||
az.record_save()
|
||||
flag = True
|
||||
|
||||
if self.config.ENABLE_HARD_CAMPAIGN:
|
||||
from module.hard.hard import CampaignHard
|
||||
@@ -60,6 +61,7 @@ class AzurLaneAutoScript:
|
||||
if not az.record_executed_since():
|
||||
az.run()
|
||||
az.record_save()
|
||||
flag = True
|
||||
|
||||
if self.config.ENABLE_EXERCISE:
|
||||
from module.exercise.exercise import Exercise
|
||||
@@ -67,6 +69,7 @@ class AzurLaneAutoScript:
|
||||
if not az.record_executed_since():
|
||||
az.run()
|
||||
az.record_save()
|
||||
flag = True
|
||||
|
||||
if flag:
|
||||
from module.reward.reward import Reward
|
||||
|
||||
Reference in New Issue
Block a user