From c6acd48b83c6149cff9ee05b3e571c98c9652af7 Mon Sep 17 00:00:00 2001 From: positnuec <93694981+positnuec@users.noreply.github.com> Date: Sat, 9 May 2026 13:38:07 +0800 Subject: [PATCH] Upd: adjust option area for 5 options --- module/handler/info_handler.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/module/handler/info_handler.py b/module/handler/info_handler.py index f91671e18..1a0c77363 100644 --- a/module/handler/info_handler.py +++ b/module/handler/info_handler.py @@ -337,8 +337,8 @@ class InfoHandler(ModuleBase): list[Button]: List of story options, from upper to bottom. If no option found, return an empty list. """ # Area to detect the options, should include at least 3 options. - story_option_area = (330, 200, 980, 465) - story_detect_area = (330, 200, 355, 465) + story_option_area = (315, 130, 965, 555) + story_detect_area = (330, 130, 355, 555) story_option_color = (247, 247, 247) image = color_similarity_2d(self.image_crop(story_detect_area, copy=False), color=story_option_color)