Skip to content

Commit b10e78f

Browse files
committed
login/data.go: Improve documentation of PlayFabID.
Closes #330.
1 parent 8096f00 commit b10e78f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

minecraft/protocol/login/data.go

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,12 @@ type ClientData struct {
159159
// SkinID is a unique ID produced for the skin, for example 'c18e65aa-7b21-4637-9b63-8ad63622ef01_Alex'
160160
// for the default Alex skin.
161161
SkinID string `json:"SkinId"`
162-
// PlayFabID is the PlayFab ID produced for the player's skin. PlayFab is
163-
// the company that hosts the Marketplace, skins and other related features
164-
// from the game. This ID is the ID of the skin used to store the skin
165-
// inside of PlayFab. PlayFabID is a semi-hex encoded string, usually consisting
166-
// of 16 characters. That said, this is not always valid hex, because the last
167-
// character may be omitted.
162+
// PlayFabID is an alphanumeric identifier unique to the player used by the
163+
// PlayFab backend platform. This platform hosts features like the
164+
// Marketplace, skins, and other related services within the game. PlayFabID
165+
// is a semi-hex encoded string, usually consisting of 16 characters. That
166+
// said, this is not always valid hex, because the last character may be
167+
// omitted.
168168
PlayFabID string `json:"PlayFabId"`
169169
// SkinImageHeight and SkinImageWidth are the dimensions of the skin's image data.
170170
SkinImageHeight, SkinImageWidth int

0 commit comments

Comments
 (0)