hch
7 天以前 6ae4b14b7fb6640ec805f070a1f0f691941c6917
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);
                }
            }
        }
    }