From 962ef52001ecfd1fcf5db159a006fb0562abc9cd Mon Sep 17 00:00:00 2001 From: silvergundam Date: Wed, 26 Feb 2025 00:17:32 +0800 Subject: [PATCH] revert: call 71 when MF AP limit in os_run --- module/campaign/os_run.py | 6 +----- module/os/operation_siren.py | 1 + 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/module/campaign/os_run.py b/module/campaign/os_run.py index 1c0d18225..023e98d43 100644 --- a/module/campaign/os_run.py +++ b/module/campaign/os_run.py @@ -54,11 +54,7 @@ class OSCampaignRun(OSMapOperation): self.load_campaign() self.campaign.os_meowfficer_farming() except ActionPointLimit: - if self.is_cl1_enabled and get_os_reset_remain() > 2 \ - and self.get_yellow_coins() > self.config.OS_CL1_YELLOW_COINS_PRESERVE: - self.config.task_delay(server_update=True) - self.config.task_call('OpsiHazard1Leveling') - elif get_os_reset_remain() > 0: + if get_os_reset_remain() > 0: self.config.task_delay(server_update=True) self.config.task_call('Reward') else: diff --git a/module/os/operation_siren.py b/module/os/operation_siren.py index 8836d7102..454fbbb3b 100644 --- a/module/os/operation_siren.py +++ b/module/os/operation_siren.py @@ -462,6 +462,7 @@ class OperationSiren(OSMap): and not self.is_in_opsi_explore() \ and next_run - datetime.now() > timedelta(minutes=27): with self.config.multi_set(): + self.config.task_delay(server_update=True) self.config.task_call('OpsiAbyssal') self.config.task_call('OpsiStronghold') self.config.task_call('OpsiObscure')