Skip to content

Commit

Permalink
Fix not being able to accept offline players' friend requests
Browse files Browse the repository at this point in the history
  • Loading branch information
Gaming32 committed May 10, 2024
1 parent 509b2a4 commit baac174
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -83,7 +83,7 @@ protected void init() {
//$$ usernameField.setFocus(true);
//#endif
if (friendProfile != null) {
usernameField.setValue(friendProfile.getName());
usernameField.setValue(WorldHost.getIfBlank(friendProfile.getName(), () -> friendProfile.getId().toString()));
}
if (usernameResponder == null) {
// Only set the responder here on first init
Expand Down

0 comments on commit baac174

Please sign in to comment.