Fix default avatar url

This commit is contained in:
Vankka 2023-06-24 21:42:33 +03:00
parent 379f0fc9f0
commit b7d586101d
No known key found for this signature in database
GPG Key ID: 6E50CB7A29B96AD0

View File

@ -15,5 +15,5 @@ public class AvatarProviderConfig {
@Comment("The template for URLs of player avatars\n" +
"This will be used for offical Java players only if auto-decide-avatar-url is set to true\n" +
"This will be used ALWAYS if auto-decide-avatar-url is set to false")
public String avatarUrlTemplate = "https://crafatar.com/avatars/%uuid-nodashes%.png?size=128&overlay#%texture%";
public String avatarUrlTemplate = "https://crafatar.com/avatars/%uuid_nodashes%.png?size=128&overlay#%texture%";
}