hch
2025-09-16 a7ba2929128d64729f71ac1dad5a969c7667c869
Main/Config/PartialConfigs/MainChapterConfig.cs
@@ -7,12 +7,17 @@
    protected override void OnConfigParseCompleted()
    {
        for (int i = 0; i < DailyBootyUpperList.Length; i++)
        if (DailyBootyUpperList != null)
        { 
            int itemID = DailyBootyUpperList[i][0];
            if (!unLockedChapterDict.Contains(itemID))
            for (int i = 0; i < DailyBootyUpperList.Length; i++)
            {
                unLockedChapterDict.Add(itemID, ChapterID);
                if (DailyBootyUpperList[i].Length == 0)
                    return;
                int itemID = DailyBootyUpperList[i][0];
                if (!unLockedChapterDict.Contains(itemID))
                {
                    unLockedChapterDict.Add(itemID, ChapterID);
                }
            }
        }
    }