瀏覽代碼

Fixing small mistake with grabbing offline profiles

nossr50 13 年之前
父節點
當前提交
7d70edc0ff
共有 1 個文件被更改,包括 1 次插入1 次删除
  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
      */
     public static PlayerProfile getOfflineProfile(String playerName) {
-        return new PlayerProfile(playerName.toLowerCase(), false);
+        return new PlayerProfile(playerName, false);
     }
 
     /**