mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-04-14 08:31:10 +08:00
Fix: Split shop task based on check frequency; general shop changes inventory 3 times daily and other shops change inventory 1 time daily
This commit is contained in:
8
alas.py
8
alas.py
@@ -135,9 +135,13 @@ class AzurLaneAutoScript:
|
||||
from module.reward.reward import Reward
|
||||
Reward(config=self.config, device=self.device).run()
|
||||
|
||||
def shop(self):
|
||||
def shop_frequent(self):
|
||||
from module.shop.shop_reward import RewardShop
|
||||
RewardShop(config=self.config, device=self.device).run()
|
||||
RewardShop(config=self.config, device=self.device).run_frequent()
|
||||
|
||||
def shop_once(self):
|
||||
from module.shop.shop_reward import RewardShop
|
||||
RewardShop(config=self.config, device=self.device).run_once()
|
||||
|
||||
def shipyard(self):
|
||||
from module.shipyard.shipyard_reward import RewardShipyard
|
||||
|
||||
Reference in New Issue
Block a user