Fix avatar max SP value to be more like on official servers

This commit is contained in:
Melledy
2023-11-25 03:10:12 -08:00
parent f6c356db15
commit 38beaca506

View File

@@ -139,7 +139,7 @@ public class GameAvatar implements GameEntity {
}
public int getMaxSp() {
return this.getExcel().getMaxSp();
return 10000;
}
public int getCurrentHp(PlayerLineup lineup) {