1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-19 18:33:00 +01:00

Fixing small mistake with grabbing offline profiles

This commit is contained in:
nossr50
2012-03-22 14:31:48 -07:00
parent 9bfbf85b4b
commit 7d70edc0ff

View File

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