1
0
mirror of https://github.com/sui-feng-cb/AzurLaneAutoScript1.git synced 2026-07-13 02:54:25 +08:00
This commit is contained in:
2026-07-09 20:31:57 +08:00
2 changed files with 8 additions and 3 deletions

View File

@@ -72,8 +72,8 @@ class GitManager(DeployConfig):
def goc_client(self):
client = GitOverCdnClient(
url=[
'https://1818706573.cdn.123clouddisk.com/1818706573/pack/LmeSzinc_AzurLaneAutoScript_master',
'https://vip.123pan.cn/1818706573/pack/LmeSzinc_AzurLaneAutoScript_master',
'https://1818706573.v.123yx.com/1818706573/pack/LmeSzinc_AzurLaneAutoScript_master',
],
folder=self.root_filepath,
source='origin',

View File

@@ -39,8 +39,13 @@ class CoalitionUI(Combat):
if event == 'coalition_20230323':
mode_switch = Switch('CoalitionMode', offset=(20, 20))
# Note that switch button are reversed
mode_switch.add_state('story', FROSTFALL_MODE_STORY)
mode_switch.add_state('battle', FROSTFALL_MODE_BATTLE)
# but TW rerun event at 20260703 does not have button reversed
if self.config.SERVER == 'tw':
mode_switch.add_state('story', FROSTFALL_MODE_BATTLE)
mode_switch.add_state('battle', FROSTFALL_MODE_STORY)
else:
mode_switch.add_state('story', FROSTFALL_MODE_STORY)
mode_switch.add_state('battle', FROSTFALL_MODE_BATTLE)
elif event == 'coalition_20240627':
mode_switch = Switch('CoalitionMode', offset=(20, 20))
mode_switch.add_state('story', ACADEMY_MODE_BATTLE)