Removed some deprec(i)ated calls to Users.getProfile()

This commit is contained in:
bm01
2013-02-01 10:18:57 +01:00
parent 56617a1c1c
commit ef775f1c24
4 changed files with 30 additions and 43 deletions

View File

@ -122,6 +122,6 @@ public final class Users {
* @return the player's McMMOPlayer object
*/
public static McMMOPlayer getPlayer(Player player) {
return getPlayer(player.getName());
return players.get(player.getName());
}
}