Tweaked for readability.

This commit is contained in:
GJ 2013-07-11 13:22:14 -04:00
parent 621969459a
commit 8fdf4042bb

View File

@ -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;