fix pokenmon

back_recharge
wangyuan 2019-09-02 12:07:15 +08:00
parent e26857c2a5
commit 31ffa233f1
1 changed files with 3 additions and 0 deletions

View File

@ -946,6 +946,9 @@ public class HeroLogic {
pokenSkillResult.append(sDifferDemonsStageConfig.getPassiveSkillString()).append("|");
}
String s = pokenSkillResult.toString();
if(StringUtil.isEmpty(s)){
return "";
}
return s.substring( 0,(s.length()-1));
}