Removed SkillSlotLimit in PlayerData.

This commit is contained in:
Ka0rX 2023-03-16 14:31:51 +01:00
parent 456ecb9da1
commit 3b40b2ef30

View File

@ -81,7 +81,7 @@ public class PlayerData extends OfflinePlayerData implements Closable, Experienc
@Nullable
private PlayerClass profess;
private int level, classPoints, skillPoints, attributePoints, attributeReallocationPoints;
private int skillSlotLimit, skillTreeReallocationPoints, skillReallocationPoints;
private int skillTreeReallocationPoints, skillReallocationPoints;
private double experience;
private double mana, stamina, stellium;
private Guild guild;
@ -458,14 +458,6 @@ public class PlayerData extends OfflinePlayerData implements Closable, Experienc
return skillPoints;
}
public int getSkillSlotLimit() {
return skillSlotLimit;
}
public void setSkillSlotLimit(int skillSlotLimit) {
this.skillSlotLimit = skillSlotLimit;
}
public void giveSkillReallocationPoints(int value) {
skillReallocationPoints += value;
}