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;