Browse Source

Removed PlayerProfile save on User.removeUser, it's already done in RemoveProfileFromMemoryTask

bm01 13 years ago
parent
commit
35565bb021
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/main/java/com/gmail/nossr50/util/Users.java

+ 0 - 1
src/main/java/com/gmail/nossr50/util/Users.java

@@ -69,7 +69,6 @@ public class Users {
     public static void removeUser(Player player) {
         //Only remove PlayerProfile if user is offline and we have it in memory
         if (!player.isOnline() && players.containsKey(player)) {
-            players.get(player).save();
             players.remove(player);
         }
     }