Harden save() method by making a defensive copy

This commit is contained in:
riking 2013-11-16 17:21:21 -08:00
parent 12ed2ac07b
commit 3236ee5ec9

View File

@ -13,6 +13,7 @@ import com.gmail.nossr50.datatypes.skills.AbilityType;
import com.gmail.nossr50.datatypes.skills.SkillType;
import com.gmail.nossr50.skills.child.FamilyTree;
import com.gmail.nossr50.util.player.UserManager;
import com.google.common.collect.ImmutableMap;
public class PlayerProfile {
private final String playerName;
@ -63,7 +64,7 @@ public class PlayerProfile {
return;
}
changed = !mcMMO.getDatabaseManager().saveUser(this);
changed = !mcMMO.getDatabaseManager().saveUser(new PlayerProfile(playerName, ImmutableMap.copyOf(skills), ImmutableMap.copyOf(skillsXp), ImmutableMap.copyOf(abilityDATS), mobHealthbarType));
if (changed) {
mcMMO.p.getLogger().warning("PlayerProfile for " + playerName + " failed to save");