1
0
mirror of https://gitee.com/sui-feng-cb/AzurLaneAutoScript1 synced 2026-03-12 09:48:20 +08:00

Upd: [tmp] OCR error on Z20 emotion

This commit is contained in:
2025-06-24 17:30:51 +08:00
parent 3b279144e2
commit 338ecea5d6

View File

@@ -40,7 +40,11 @@ class EmotionDigit(Digit):
if result == '044' or result == 'D44':
result = '0'
return super().after_process(result)
result = super().after_process(result)
if result > 150 and result % 10 == 1:
result //= 10
return result
@dataclass(frozen=True)