This commit is contained in:
parent
86029e1b1f
commit
29c842aaf8
@ -61,7 +61,7 @@ public class Skin {
|
||||
public Skin populatePartUrls(String playerUuid) {
|
||||
for (Parts part : Parts.values()) {
|
||||
String partName = part.name().toLowerCase();
|
||||
this.partUrls.put(partName, Config.INSTANCE.getWebPublicUrl() + "/player/" + partName + "/" + playerUuid + "?size=250");
|
||||
this.partUrls.put(partName, Config.INSTANCE.getWebPublicUrl() + "/player/" + partName + "/" + playerUuid + "?size=" + part.getDefaultSize());
|
||||
}
|
||||
return this;
|
||||
}
|
||||
@ -73,7 +73,7 @@ public class Skin {
|
||||
@Getter @AllArgsConstructor
|
||||
public enum Parts {
|
||||
|
||||
HEAD(8, 8, 8, 8, 250);
|
||||
HEAD(8, 8, 8, 8, 128);
|
||||
|
||||
/**
|
||||
* The x and y position of the part.
|
||||
|
@ -16,7 +16,6 @@ import java.util.List;
|
||||
|
||||
@Getter @NoArgsConstructor
|
||||
public class MojangProfile {
|
||||
|
||||
/**
|
||||
* The UUID of the player.
|
||||
*/
|
||||
@ -52,7 +51,7 @@ public class MojangProfile {
|
||||
|
||||
/**
|
||||
* Gets the formatted UUID of the player.
|
||||
*
|
||||
*
|
||||
* @return the formatted UUID
|
||||
*/
|
||||
public String getFormattedUuid() {
|
||||
|
Loading…
Reference in New Issue
Block a user