Skip to content

Commit

Permalink
Use method override instead of getting player profile directly
Browse files Browse the repository at this point in the history
  • Loading branch information
EsotericEnderman committed Aug 3, 2024
1 parent ec69b37 commit 2a1e76c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,6 @@ public PlayerProfile getPlayerProfile(UUID uuid) {
}

public PlayerProfile getPlayerProfile(Player player) {
return playerData.get(player.getUniqueId());
return getPlayerProfile(player.getUniqueId());
}
}

0 comments on commit 2a1e76c

Please sign in to comment.