公会boss血量由int改long

back_recharge
duhui 2021-04-06 14:21:14 +08:00
parent 8acb5abc25
commit 31da60deef
1 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ public class SGuildCheckpointConfig implements BaseConfig {
private int[] privilege;
private int monsterHp;
private long monsterHp;
@Override
@ -77,7 +77,7 @@ public class SGuildCheckpointConfig implements BaseConfig {
return privilege;
}
public int getMonsterHp() {
public long getMonsterHp() {
return monsterHp;
}
}