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