mirror of
https://gitee.com/sui-feng-cb/AzurLaneAutoScript1
synced 2026-03-12 12:08:21 +08:00
Refactor: Rename main configs
- Faster chapter selection and page_campaign - Rename some old Chinglish variables in map info
This commit is contained in:
@@ -55,7 +55,7 @@ class Level(ModuleBase):
|
||||
Returns:
|
||||
list[int]:
|
||||
"""
|
||||
if not self.config.STOP_IF_REACH_LV120 and not self.config.STOP_IF_REACH_LV32:
|
||||
if not self.config.StopCondition_ReachLevel120 and not self.config.STOP_IF_REACH_LV32:
|
||||
return [-1] * 6
|
||||
|
||||
self._lv_before_battle = self.lv if after_battle else [-1] * 6
|
||||
@@ -71,7 +71,7 @@ class Level(ModuleBase):
|
||||
return self.lv
|
||||
|
||||
def lv120_triggered(self):
|
||||
if not self.config.STOP_IF_REACH_LV120:
|
||||
if not self.config.StopCondition_ReachLevel120:
|
||||
return False
|
||||
|
||||
for i in range(6):
|
||||
|
||||
Reference in New Issue
Block a user