From f2137c699a2ea2eaeab126e8abb06f7ab4ef2f8e Mon Sep 17 00:00:00 2001 From: 0O0o0oOoO00 <11174151+0O0o0oOoO00@users.noreply.github.com> Date: Mon, 1 Sep 2025 00:22:57 +0800 Subject: [PATCH] fix: add the newly added mains and events to the scheduler priority --- module/config/config_manual.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/module/config/config_manual.py b/module/config/config_manual.py index f928f67f2..80e2ee8c0 100644 --- a/module/config/config_manual.py +++ b/module/config/config_manual.py @@ -380,6 +380,33 @@ class ManualConfig: USE_DATA_KEY = False +class ManualConfig(ManualConfig): + SCHEDULER_PRIORITY = """ + Restart + > OpsiCrossMonth + > Commission > Tactical > Research + > Exercise + > Dorm > Meowfficer > Guild > Gacha + > Reward + > ShopFrequent > ShopOnce > Shipyard > Freebies + > PrivateQuarters + > OpsiExplore + > Minigame > Awaken + > OpsiAshBeacon + > OpsiDaily > OpsiShop > OpsiVoucher + > OpsiAbyssal > OpsiStronghold > OpsiObscure > OpsiArchive + > Daily > Hard > OpsiAshBeacon > OpsiAshAssist > OpsiMonthBoss + > Sos > EventSp > EventA > EventB > EventC > EventD + > RaidDaily > CoalitionSp > WarArchives > MaritimeEscort + > Event > Event2 > Event3 > Event4 > Event5 > Event6 + > Raid > Hospital > Coalition + > Main > Main2 > Main3 > Main4 > Main5 > Main6 + > OpsiMeowfficerFarming + > GemsFarming + > OpsiHazard1Leveling + """ + + ADDING = ''.join([chr(int(f)) for f in ManualConfig.OS_EXPLORE_CENTER.split('>')])