Skip to content

Commit

Permalink
Add missing getLocale method
Browse files Browse the repository at this point in the history
  • Loading branch information
EsotericEnderman committed Aug 3, 2024
1 parent 091000c commit 2193b7f
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,10 @@ private String getLocale(UUID uuid) {
return getLocale(player);
}

private String getLocale(PlayerProfile profile) {
return getLocale(profile.getUuid());
}

private String getProfileLanguage(PlayerProfile profile) {
if (profile == null) {
return null;
Expand Down

0 comments on commit 2193b7f

Please sign in to comment.