1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-04-20 04:54:53 +08:00
This commit is contained in:
2026-04-18 23:56:17 +08:00
66 changed files with 691 additions and 92 deletions

View File

@@ -41,6 +41,13 @@ class MetaDigitCounter(DigitCounter):
if re.match(r'^[0123]3$', result):
result = f'{result[0]}/{result[1]}'
# 1/40/1400 -> 140/1400
for suffix in ['/1400', '/200']:
if result.endswith(suffix):
point = result[:-len(suffix)]
point = point.replace('/', '')
result = point + suffix
return result