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

Opt: Combined save and upload options

This commit is contained in:
SarContDeli
2022-05-20 15:25:32 +08:00
parent 9e9d7ab344
commit 7db5af2a88
14 changed files with 247 additions and 187 deletions

View File

@@ -191,8 +191,10 @@ class MeowfficerCollect(MeowfficerBase):
logger.attr('Meow_get', count)
with self.stat.new(
genre="meowfficer_talent",
upload=self.config.DropRecord_UploadMeowfficerTalent,
save=self.config.DropRecord_SaveMeowfficerTalent,
save=self.config.DropRecord_MeowfficerTalent == 'save' or
self.config.DropRecord_MeowfficerTalent == 'save_and_upload',
upload=self.config.DropRecord_MeowfficerTalent == 'upload' or
self.config.DropRecord_MeowfficerTalent == 'save_and_upload'
) as drop:
drop.add(self.device.image)
list_talent_btn, special_talent = self._get_meow_talent_grid()