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

Tmp: Disable supply pack for now

This commit is contained in:
LmeSzinc
2025-08-15 11:58:07 +08:00
parent e8811c36d9
commit 034f69e98e
2 changed files with 31 additions and 34 deletions

View File

@@ -22,6 +22,7 @@ class Freebies(ModuleBase):
logger.hr('Mail', level=1) logger.hr('Mail', level=1)
MailWhite(self.config, self.device).run() MailWhite(self.config, self.device).run()
if self.config.SERVER in ['tw']:
if self.config.SupplyPack_Collect: if self.config.SupplyPack_Collect:
logger.hr('Supply pack', level=1) logger.hr('Supply pack', level=1)
SupplyPack(self.config, self.device).run() SupplyPack(self.config, self.device).run()

View File

@@ -8,9 +8,7 @@ from module.shop.ui import ShopUI
class RewardShop(ShopUI): class RewardShop(ShopUI):
def run_frequent(self): def run_frequent(self):
self.config.task_delay(server_update=True) if self.config.SERVER in ['tw']:
self.config.task_stop()
# Munitions shops # Munitions shops
self.ui_goto_shop() self.ui_goto_shop()
@@ -22,9 +20,7 @@ class RewardShop(ShopUI):
self.config.task_delay(server_update=True) self.config.task_delay(server_update=True)
def run_once(self): def run_once(self):
self.config.task_delay(server_update=True) if self.config.SERVER in ['tw']:
self.config.task_stop()
# Munitions shops # Munitions shops
self.ui_goto_shop() self.ui_goto_shop()