hch
2025-09-17 f306d23e461ab236ed88173f7b4a5bc35a3e9bc9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
using System.Collections.Generic;
using System.Collections.Specialized;
 
public partial class MainChapterConfig : ConfigBase<int, MainChapterConfig>
{
    public static OrderedDictionary unLockedChapterDict = new OrderedDictionary();
 
    protected override void OnConfigParseCompleted()
    {
        if (DailyBootyUpperList != null)
        { 
            for (int i = 0; i < DailyBootyUpperList.Length; i++)
            {
                if (DailyBootyUpperList[i].Length == 0)
                    return;
                int itemID = DailyBootyUpperList[i][0];
                if (!unLockedChapterDict.Contains(itemID))
                {
                    unLockedChapterDict.Add(itemID, ChapterID);
                }
            }
        }
    }
 
   
}