Fix: Allow a total of 6 double calyx

This commit is contained in:
LmeSzinc 2024-06-13 23:01:22 +08:00
parent c8b0be6b46
commit 50303fe6ab

View File

@ -123,7 +123,7 @@ class DungeonEvent(UI):
if not ocr.is_format_matched(row.ocr_text):
continue
remain, _, total = ocr.format_result(row.ocr_text)
if total in [3, 12]:
if total in [3, 6, 12]:
logger.attr('Double event remain at combat', remain)
return remain
logger.warning('Double event appears but failed to get remain')