hardstageBuff表改动相关注释
parent
b2ec86a39d
commit
186fc06156
|
@ -224,10 +224,10 @@ public class HardStageLogic {
|
|||
if (nodeConfig.getHardStageBuff() != 0) {
|
||||
buff = SHardStageBuff.getConfigMap().get(nodeConfig.getHardStageBuff());
|
||||
if (buff.getType() == 2 || buff.getType() == 3) {
|
||||
//skillSb.append(buff.getPassiveSkillLogic()).append("#");
|
||||
for (int passiveId:buff.getPassiveSkillLogic()) {
|
||||
skillSb.append(buff.getPassiveSkillLogic()).append("#");
|
||||
/*for (int passiveId:buff.getPassiveSkillLogic()) {
|
||||
skillSb.append(passiveId).append("#");
|
||||
}
|
||||
}*/
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -461,10 +461,10 @@ public class CBean2Proto {
|
|||
if(nodeConfig.getHardStageBuff() != 0){
|
||||
SHardStageBuff buff = SHardStageBuff.getConfigMap().get(nodeConfig.getHardStageBuff());
|
||||
if(buff.getType()==1 || buff.getType()==3){
|
||||
//monsterSkillList.append(buff.getPassiveSkillLogic()).append("#");
|
||||
for (int passiveId:buff.getPassiveSkillLogic()) {
|
||||
monsterSkillList.append(buff.getPassiveSkillLogic()).append("#");
|
||||
/*for (int passiveId:buff.getPassiveSkillLogic()) {
|
||||
monsterSkillList.append(passiveId).append("#");
|
||||
}
|
||||
}*/
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ public class SHardStageBuff implements BaseConfig {
|
|||
|
||||
private int id;
|
||||
private int type;
|
||||
private int[] passiveSkillLogic;
|
||||
private int passiveSkillLogic;
|
||||
private int[] vocation;
|
||||
|
||||
private static Map<Integer,SHardStageBuff> configMap ;
|
||||
|
@ -32,7 +32,7 @@ public class SHardStageBuff implements BaseConfig {
|
|||
return type;
|
||||
}
|
||||
|
||||
public int[] getPassiveSkillLogic() {
|
||||
public int getPassiveSkillLogic() {
|
||||
return passiveSkillLogic;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue