fix
parent
80d5a64bbe
commit
60916bfbf4
|
|
@ -218,7 +218,7 @@ public class FightDataUtil {
|
||||||
|
|
||||||
private static LuaValue getSkill(String skillId) {
|
private static LuaValue getSkill(String skillId) {
|
||||||
LuaValue skill = new LuaTable();
|
LuaValue skill = new LuaTable();
|
||||||
if (skillId.equals("") || skillId==null){
|
if (skillId==null || skillId.equals("") ){
|
||||||
return skill;
|
return skill;
|
||||||
}
|
}
|
||||||
SSkillLogicVo sSkillLogicVo = SSkillLogicConfig.getsSkillLogicVo(Integer.valueOf(skillId));
|
SSkillLogicVo sSkillLogicVo = SSkillLogicConfig.getsSkillLogicVo(Integer.valueOf(skillId));
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue