فهرست منبع

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);
     }
 
     /**