Skip to content

Commit

Permalink
Merge pull request #49 from HttpMarco/dev
Browse files Browse the repository at this point in the history
Fix null pointer on fallback search
  • Loading branch information
HttpMarco authored Jun 19, 2024
2 parents 4719c28 + 4c70aae commit dae0c33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
public final class CloudPlayerImpl extends CloudPlayer {

public CloudPlayerImpl(UUID uniqueId, String name) {
super(uniqueId, name, null, null);
super(uniqueId, name, "null", "null");
}

public void changeServerName(String name) {
Expand Down

0 comments on commit dae0c33

Please sign in to comment.