hch
2025-09-09 7ee06a9d53a47b106458c571fadbb7583b570766
Main/Config/PartialConfigs/HeroAwakeConfig.cs
@@ -49,6 +49,7 @@
        return GetHeroAwakeConfig(heroID, awakeLv) != null;
    }
    //解锁指定天赋槽位需要的觉醒等级
    public static int GetAwakeLVByUnLockGiftIndex(int heroID, int index)
    {
        Dictionary<int, HeroAwakeConfig> tempDic = null;
@@ -66,6 +67,7 @@
        }
        return 0;
    }
    
    public static int GetMaxAwakeLV(int heroID)
    {
@@ -73,7 +75,7 @@
        if (!configDics.TryGetValue(heroID, out tempDic))
        {
            return 0;
        }
        }
        return tempDic.Count;
    }
}