Interface PlayerSettings
public interface PlayerSettings
Represents the client settings for the player.
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic enum
The client's current chat display mode.static enum
The player's selected dominant hand. -
Method Summary
Modifier and TypeMethodDescriptionReturns the chat setting for the client.Returns the locale of the Minecraft client.Returns the primary hand of the client.Returns the parts of player skins the client will show.byte
Returns the client's view distance.boolean
Returns whether or not the client has chat colors disabled.boolean
Returns whether the client explicitly allows listing on theTabList
or not in anonymous TabList mode.
-
Method Details
-
getLocale
Locale getLocale()Returns the locale of the Minecraft client.- Returns:
- the client locale
-
getViewDistance
byte getViewDistance()Returns the client's view distance. This does not guarantee the client will see this many chunks, since your servers are responsible for sending the chunks.- Returns:
- the client view distance
-
getChatMode
PlayerSettings.ChatMode getChatMode()Returns the chat setting for the client.- Returns:
- the chat setting
-
hasChatColors
boolean hasChatColors()Returns whether or not the client has chat colors disabled.- Returns:
- whether or not the client has chat colors disabled
-
getSkinParts
SkinParts getSkinParts()Returns the parts of player skins the client will show.- Returns:
- the skin parts for the client
-
getMainHand
PlayerSettings.MainHand getMainHand()Returns the primary hand of the client.- Returns:
- the primary hand of the client
-
isClientListingAllowed
boolean isClientListingAllowed()Returns whether the client explicitly allows listing on theTabList
or not in anonymous TabList mode. This feature was introduced in 1.18.- Returns:
- whether or not the client explicitly allows listing. Always false on older clients.
- Since Minecraft:
- 1.18
-