Main/System/Battle/UIComp/BasicHeroInfoContainer.cs
@@ -7,9 +7,12 @@ public Image countryIcon; public Text txtLv; public void SetHeroInfo(TeamHero teamHero) { txtLvName.text = string.Format("Lv.{0} {1}", teamHero.level, teamHero.name); txtLvName.text = teamHero.name; //string.Format("{0}", teamHero.level, teamHero.name); countryIcon.SetSprite(HeroUIManager.Instance.GetCountryIconName((int)teamHero.Country)); txtLv.text = string.Format("[{0}]", teamHero.level); } }