Skip to content

Commit

Permalink
Revert player name
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinthegreat1 committed Dec 21, 2024
1 parent 12244a2 commit ad2db5c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ private CompletableFuture<Void> fetchPlayerData(String username) {
String stringifiedUuid = ApiUtils.name2Uuid(username);

if (stringifiedUuid.isEmpty()) {
this.playerName = "Player not found";
this.playerName = "User not found";
this.errorMessage = "Player UUID not found";
this.profileNotFound = true;
}
Expand Down Expand Up @@ -185,7 +185,7 @@ public boolean isInvisibleTo(PlayerEntity player) {
};
entity.setCustomNameVisible(false);
}).exceptionally(ex -> {
this.playerName = "Player not found";
this.playerName = "User not found";
this.errorMessage = "Player skin not found";
this.profileNotFound = true;
return null;
Expand Down

0 comments on commit ad2db5c

Please sign in to comment.