yyl
2 天以前 973edc44a04dceb8b48a32ca912e6167f86189d4
Main/System/Hero/HeroInfo.Fetter.cs
@@ -41,16 +41,16 @@
   }
   public int GetFetterAttrPer(int attrType)
   {
        if (PlayerPropertyConfig.baseAttr2perDict.ContainsKey(attrType))
        {
            var pertype = PlayerPropertyConfig.baseAttr2perDict[attrType];
            return fetterAttrs.ContainsKey(pertype) ? fetterAttrs[pertype] : 0;
        }
        return 0;
   {
      if (PlayerPropertyConfig.baseAttr2perDict.ContainsKey(attrType))
      {
         var pertype = PlayerPropertyConfig.baseAttr2perDict[attrType];
         return fetterAttrs.ContainsKey(pertype) ? fetterAttrs[pertype] : 0;
      }
      return 0;
   }
   public List<int> GetActiveFetter(HeroConfig config, TeamBase teamBase)
   {
      List<int> list = new List<int>();
@@ -82,4 +82,6 @@
      return list;
   }
}