yyl
2 天以前 30ba2ef747ced774bef177d5273cb5a3429cff49
Main/System/Team/TeamManager.cs
@@ -23,22 +23,9 @@
      if (!teamDict.TryGetValue(teamType, out team))
      {
         team = GetStoryTeam();
         teamDict.Add(teamType, team);
      }
      return team;
   }
   public TeamBase GetStoryTeam()
   {
      TeamBase team = null;
      if (!teamDict.TryGetValue(TeamType.Story, out team))
      {
         team = new TeamBase();
         team.AddTeamHeros(HeroManager.Instance.GetPowerfulHeroList());
         teamDict.Add(TeamType.Story, team);
         teamDict.Add(teamType, team);
      }
      return team;