fix(startower): fix level up logic

This commit is contained in:
Fishia
2025-11-28 07:14:59 -08:00
committed by Melledy
parent 3e47c8ef06
commit 7577bf87d4
2 changed files with 22 additions and 17 deletions
@@ -7,6 +7,7 @@ import lombok.Getter;
@Getter
@ResourceType(name = "StarTowerFloorExp.json")
public class StarTowerFloorExpDef extends BaseDef {
private int Id;
private int StarTowerId;
private int Stage;
private int NormalExp;
@@ -16,6 +17,6 @@ public class StarTowerFloorExpDef extends BaseDef {
@Override
public int getId() {
return StarTowerId;
return Id;
}
}