hch
2025-11-20 ed98029a88cd89702980ac7c40b711afddc5aeb2
Main/Config/Configs/CTGConfig.cs
@@ -1,6 +1,6 @@
//--------------------------------------------------------
//    [Author]:           YYL
//    [  Date ]:           2025年8月5日
//    [  Date ]:           2025年11月9日
//--------------------------------------------------------
using System.Collections.Generic;
@@ -27,7 +27,7 @@
   public int GainGold;
   public int GainGoldPaper;
   public int FirstGoldPaperPrize;
   public string GainItemList;
   public int[][] GainItemList;
   public int[][] SelectItemInfo;
   public string Icon;
   public int PayType;
@@ -65,7 +65,7 @@
         int.TryParse(tables[10],out FirstGoldPaperPrize); 
         GainItemList = tables[11];
         GainItemList = JsonMapper.ToObject<int[][]>(tables[11].Replace("(", "[").Replace(")", "]"));
         SelectItemInfo = JsonMapper.ToObject<int[][]>(tables[12].Replace("(", "[").Replace(")", "]"));