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

Fix: OS explore scheduling

- Add config.multi_set
- Fix exercise server update
This commit is contained in:
LmeSzinc
2021-09-26 18:26:58 +08:00
parent fc5f88a6ab
commit cb5db9d458
7 changed files with 64 additions and 25 deletions

View File

@@ -23,7 +23,6 @@ class OSCampaignRun(OSMapOperation):
self.load_campaign()
try:
self.campaign.os_explore()
self.config.task_delay(server_update=True)
except ActionPointLimit:
self.campaign.config.task_delay(minute=360)
@@ -31,7 +30,6 @@ class OSCampaignRun(OSMapOperation):
self.load_campaign()
try:
self.campaign.os_daily()
self.config.task_delay(server_update=True)
except ActionPointLimit:
self.campaign.config.task_delay(minute=360)
@@ -39,7 +37,6 @@ class OSCampaignRun(OSMapOperation):
self.load_campaign()
try:
self.campaign.os_meowfficer_farming()
self.config.task_delay(server_update=True)
except ActionPointLimit:
self.campaign.config.task_delay(server_update=True)
@@ -47,6 +44,5 @@ class OSCampaignRun(OSMapOperation):
self.load_campaign()
try:
self.campaign.os_obscure()
self.config.task_delay(server_update=True)
except ActionPointLimit:
self.campaign.config.task_delay(minute=360)