forked from MinecraftUtilities/Backend
tests!
This commit is contained in:
@ -3,6 +3,7 @@ package cc.fascinated.model.player;
|
||||
import cc.fascinated.model.mojang.MojangProfile;
|
||||
import cc.fascinated.util.Tuple;
|
||||
import cc.fascinated.util.UUIDUtils;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import lombok.Getter;
|
||||
|
||||
import java.util.UUID;
|
||||
@ -16,8 +17,9 @@ public class Player {
|
||||
private final UUID uuid;
|
||||
|
||||
/**
|
||||
* The name of the player
|
||||
* The username of the player
|
||||
*/
|
||||
@JsonProperty("username")
|
||||
private final String name;
|
||||
|
||||
/**
|
||||
|
@ -104,6 +104,15 @@ public class Skin {
|
||||
*/
|
||||
private final int defaultSize;
|
||||
|
||||
/**
|
||||
* Gets the name of the part.
|
||||
*
|
||||
* @return the name of the part
|
||||
*/
|
||||
public String getName() {
|
||||
return this.name().toLowerCase();
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the skin part from its name.
|
||||
*
|
||||
|
Reference in New Issue
Block a user