diff options
author | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-08-14 11:06:26 +1000 |
---|---|---|
committer | Kae <80987908+Novaenia@users.noreply.github.com> | 2024-08-14 11:06:26 +1000 |
commit | cadd5b32ff17bd4fd996099e810b65dd1fd8be0e (patch) | |
tree | 11d17b3b32b72829778295b9e1d84c21fd75df9c | |
parent | 1a5507f019df1ca9ff4ae7f87d5e23047757194c (diff) | |
parent | 33e5476ab314669cc89fc09127d20da1b5836e71 (diff) |
Merge branch 'main' of https://github.com/OpenStarbound/OpenStarbound
-rw-r--r-- | doc/lua/openstarbound.md | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/doc/lua/openstarbound.md b/doc/lua/openstarbound.md index 8a70a05..ad8483d 100644 --- a/doc/lua/openstarbound.md +++ b/doc/lua/openstarbound.md @@ -232,53 +232,53 @@ Sets the player's hair directives. --- -#### `String` player.facialHairGroup() +#### `String` player.facialHair() -Returns the player's facial hair group. +Returns the player's facial hair type. Same as player.facialHairType? -#### `void` player.setFacialHairGroup(`String` facialHairGroup) +#### `void` player.setFacialHair(`String` facialHairGroup, `String` facialHairType, `String` facialHairDirectives) -Sets the player's facial hair group. +Sets the player's facial hair group, type, and directives. --- -#### `String` player.facialHair() +#### `String` player.facialHairType() -Returns the player's facial hair. +Returns the player's facial hair type. -#### `void` player.setFacialHair(`String` facialHair) +#### `void` player.setFacialHairType(`String` facialHairType) -Sets the player's facial hair. +Sets the player's facial hair type. --- -#### `String` player.facialHairDirectives() +#### `String` player.facialHairGroup() -Returns the player's facial hair directives. +Returns the player's facial hair group. -#### `void` player.setFacialHairDirectives(`String` facialHairDirectives) +#### `void` player.setFacialHairGroup(`String` facialHairGroup) -Sets the player's facial hair directives. +Sets the player's facial hair group. --- -#### `String` player.facialMask() +#### `String` player.facialHairDirectives() -Returns the player's facial mask group. +Returns the player's facial hair directives. -#### `void` player.setFacialMask(`String` facialMask) +#### `void` player.setFacialHairDirectives(`String` facialHairDirectives) -Sets the player's facial mask. +Sets the player's facial hair directives. --- -#### `String` player.facialMaskType() +#### `String` player.facialMask() -Returns the player's facial mask type. +Returns the player's facial mask group. -#### `void` player.setFacialMaskType(`String` facialMaskType) +#### `void` player.setFacialMask(`String` facialMaskGroup, `String` facialMaskType, `String` facialMaskDirectives) -Sets the player's facial mask type. +Sets the player's facial mask group, type, and directives. --- |