lcy
6 天以前 cc349a454d938e4046151233d6639d2c3807da9b
Main/Config/Configs/GetItemWaysConfig.cs
@@ -1,6 +1,6 @@
//--------------------------------------------------------
//    [Author]:           YYL
//    [  Date ]:           2025年8月10日
//    [  Date ]:           2025年11月4日
//--------------------------------------------------------
using System.Collections.Generic;
@@ -17,9 +17,12 @@
    }
    public int ID;
   public string name;
   public string Name;
   public string Text;
   public int WinJumpID;
   public int FuncID;
   public int Type;
   public string CustomValue;
    public override int LoadKey(string _key)
    {
@@ -33,11 +36,17 @@
        string[] tables = input.Split('\t');
        int.TryParse(tables[0],out ID); 
         name = tables[1];
         Name = tables[1];
         Text = tables[2];
         int.TryParse(tables[3],out WinJumpID); 
         int.TryParse(tables[4],out FuncID);
         int.TryParse(tables[5],out Type);
         CustomValue = tables[6];
        }
        catch (Exception exception)
        {