hch
2025-09-11 aa72688fbfcba5cf8d90a7b34700bbe1f9ebee12
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
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()
    {
        for (int i = 0; i < DailyBootyUpperList.Length; i++)
        { 
            int itemID = DailyBootyUpperList[i][0];
            if (!unLockedChapterDict.Contains(itemID))
            {
                unLockedChapterDict.Add(itemID, ChapterID);
            }
        }
    }
 
   
}