1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2025-06-22 17:01:24 +02: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

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