mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-12 14:27:00 +08:00
Fix: Minor log showing in CampaignAB
This commit is contained in:
@@ -26,7 +26,7 @@ class EventStage:
|
|||||||
class CampaignAB(CampaignRun):
|
class CampaignAB(CampaignRun):
|
||||||
def run(self):
|
def run(self):
|
||||||
stages = [EventStage(file) for file in os.listdir(f'./campaign/{self.config.Campaign_Event}')]
|
stages = [EventStage(file) for file in os.listdir(f'./campaign/{self.config.Campaign_Event}')]
|
||||||
logger.attr('Stage', stages)
|
logger.attr('Stage', [str(stage) for stage in stages])
|
||||||
logger.attr('StageFilter', self.config.EventAb_StageFilter)
|
logger.attr('StageFilter', self.config.EventAb_StageFilter)
|
||||||
STAGE_FILTER.load(self.config.EventAb_StageFilter)
|
STAGE_FILTER.load(self.config.EventAb_StageFilter)
|
||||||
stages = STAGE_FILTER.apply(stages)
|
stages = STAGE_FILTER.apply(stages)
|
||||||
|
|||||||
Reference in New Issue
Block a user