Browse Source

Fixing small mistake with grabbing offline profiles

nossr50 13 years ago
parent
commit
7d70edc0ff
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/main/java/com/gmail/nossr50/Users.java

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

@@ -125,7 +125,7 @@ public class Users {
      * @return the player's profile
      * @return the player's profile
      */
      */
     public static PlayerProfile getOfflineProfile(String playerName) {
     public static PlayerProfile getOfflineProfile(String playerName) {
-        return new PlayerProfile(playerName.toLowerCase(), false);
+        return new PlayerProfile(playerName, false);
     }
     }
 
 
     /**
     /**