Skip to content

Commit

Permalink
fix: Game profile requires not null name on 1.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
iGabyTM authored Oct 9, 2023
1 parent 98fc432 commit 4a0f424
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public SkullBuilder texture(@NotNull final String texture, @NotNull final UUID p
}

final SkullMeta skullMeta = (SkullMeta) getMeta();
final GameProfile profile = new GameProfile(profileId, null);
final GameProfile profile = new GameProfile(profileId, "");
profile.getProperties().put("textures", new Property("textures", texture));

try {
Expand Down

0 comments on commit 4a0f424

Please sign in to comment.