mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 13:16:45 +01:00
Tweaked for readability.
This commit is contained in:
parent
621969459a
commit
8fdf4042bb
@ -19,6 +19,7 @@ import com.gmail.nossr50.skills.child.FamilyTree;
|
||||
public class PlayerProfile {
|
||||
private final String playerName;
|
||||
private boolean loaded;
|
||||
private boolean changed;
|
||||
|
||||
/* HUDs */
|
||||
private HudType hudType;
|
||||
@ -30,7 +31,6 @@ public class PlayerProfile {
|
||||
private final Map<SkillType, Integer> skills = new HashMap<SkillType, Integer>(); // Skill & Level
|
||||
private final Map<SkillType, Float> skillsXp = new HashMap<SkillType, Float>(); // Skill & XP
|
||||
private final Map<AbilityType, Integer> skillsDATS = new HashMap<AbilityType, Integer>(); // Ability & Cooldown
|
||||
private boolean changed = false;
|
||||
|
||||
public PlayerProfile(String playerName) {
|
||||
this.playerName = playerName;
|
||||
@ -70,11 +70,13 @@ public class PlayerProfile {
|
||||
}
|
||||
|
||||
public void save() {
|
||||
if (changed) {
|
||||
if (!changed) {
|
||||
return;
|
||||
}
|
||||
|
||||
mcMMO.getDatabaseManager().saveUser(this);
|
||||
changed = false;
|
||||
}
|
||||
}
|
||||
|
||||
public String getPlayerName() {
|
||||
return playerName;
|
||||
|
Loading…
Reference in New Issue
Block a user