back_recharge
wangyuan 2019-06-04 15:53:19 +08:00
parent 80d5a64bbe
commit 60916bfbf4
1 changed files with 1 additions and 1 deletions

View File

@ -218,7 +218,7 @@ public class FightDataUtil {
private static LuaValue getSkill(String skillId) {
LuaValue skill = new LuaTable();
if (skillId.equals("") || skillId==null){
if (skillId==null || skillId.equals("") ){
return skill;
}
SSkillLogicVo sSkillLogicVo = SSkillLogicConfig.getsSkillLogicVo(Integer.valueOf(skillId));