From 11b91ff84f3dcce737ded182eeb442c4cd228a35 Mon Sep 17 00:00:00 2001 From: SilverSokolova <80606782+SilverSokolova@users.noreply.github.com> Date: Mon, 7 Oct 2024 17:02:46 -0500 Subject: [PATCH] Documentation: Fix player.setActionBarSlotLink doc and add player.currentState --- doc/lua/openstarbound.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/doc/lua/openstarbound.md b/doc/lua/openstarbound.md index 23c0bbb..b5ceef0 100644 --- a/doc/lua/openstarbound.md +++ b/doc/lua/openstarbound.md @@ -394,9 +394,9 @@ Returns whether the specified item can enter the specified item bag. Returns the contents of the specified action bar link slot's specified hand. -#### `bool` player.setActionBarSlotLink(`String` itemBagName, `ItemDescriptor` item) +#### `bool` player.setActionBarSlotLink(`int` slot, `String` hand, `ItemSlot` itemSlot) -Returns whether the specified item can enter the specified item bag. +Links the specified slot's hand to the specified itemSlot. --- @@ -415,3 +415,21 @@ Sets the player's interact radius. This does not persist upon returning to the m Returns all the recipes the player can craft with their currently held items and currencies. --- +#### `String` player.currentState() + +Returns the player's current movement state. + +
Player States +idle
+walk
+run
+jump
+fall
+swim
+swimIdle
+lounge
+crouch
+teleportIn
+teleportOut
+
+---