From 33e5476ab314669cc89fc09127d20da1b5836e71 Mon Sep 17 00:00:00 2001 From: SilverSokolova <80606782+SilverSokolova@users.noreply.github.com> Date: Tue, 13 Aug 2024 19:47:45 -0500 Subject: [PATCH] player.facialMask and player.facialHair stuff --- doc/lua/openstarbound.md | 44 ++++++++++++++++++++-------------------- 1 file changed, 22 insertions(+), 22 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,6 +232,26 @@ Sets the player's hair directives. --- +#### `String` player.facialHair() + +Returns the player's facial hair type. Same as player.facialHairType? + +#### `void` player.setFacialHair(`String` facialHairGroup, `String` facialHairType, `String` facialHairDirectives) + +Sets the player's facial hair group, type, and directives. + +--- + +#### `String` player.facialHairType() + +Returns the player's facial hair type. + +#### `void` player.setFacialHairType(`String` facialHairType) + +Sets the player's facial hair type. + +--- + #### `String` player.facialHairGroup() Returns the player's facial hair group. @@ -242,16 +262,6 @@ Sets the player's facial hair group. --- -#### `String` player.facialHair() - -Returns the player's facial hair. - -#### `void` player.setFacialHair(`String` facialHair) - -Sets the player's facial hair. - ---- - #### `String` player.facialHairDirectives() Returns the player's facial hair directives. @@ -266,19 +276,9 @@ Sets the player's facial hair directives. Returns the player's facial mask group. -#### `void` player.setFacialMask(`String` facialMask) +#### `void` player.setFacialMask(`String` facialMaskGroup, `String` facialMaskType, `String` facialMaskDirectives) -Sets the player's facial mask. - ---- - -#### `String` player.facialMaskType() - -Returns the player's facial mask type. - -#### `void` player.setFacialMaskType(`String` facialMaskType) - -Sets the player's facial mask type. +Sets the player's facial mask group, type, and directives. ---