From 135f232f0e987c07f684235fe3b4c678a5aa9aeb Mon Sep 17 00:00:00 2001 From: ForestOfLight Date: Sun, 8 Jun 2025 11:01:47 -0700 Subject: [PATCH] Update how tos --- Construct[BP]/scripts/options/easyPlace.js | 2 +- Construct[BP]/scripts/options/materialGrabber.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Construct[BP]/scripts/options/easyPlace.js b/Construct[BP]/scripts/options/easyPlace.js index 1636781..b950195 100644 --- a/Construct[BP]/scripts/options/easyPlace.js +++ b/Construct[BP]/scripts/options/easyPlace.js @@ -10,7 +10,7 @@ const builderOption = new BuilderOption({ identifier: 'easyPlace', displayName: 'Easy Place', description: 'Always place the correct structure block.', - howToUse: "Hold the Easy Place item in your offhand to always place the correct blocks in a structure.", + howToUse: "Hold the Easy Place item in your offhand and place blocks in a structure to have them be corrected automatically.", onEnableCallback: (playerId) => giveActionItem(playerId), onDisableCallback: (playerId) => removeActionItem(playerId) }); diff --git a/Construct[BP]/scripts/options/materialGrabber.js b/Construct[BP]/scripts/options/materialGrabber.js index 2415dd6..8bae80d 100644 --- a/Construct[BP]/scripts/options/materialGrabber.js +++ b/Construct[BP]/scripts/options/materialGrabber.js @@ -8,7 +8,7 @@ const builderOption = new BuilderOption({ identifier: 'materialGrabber', displayName: 'Material Grabber', description: 'Pulls structure items from inventories.', - howToUse: "Interact with inventories using an item named 'Material Grabber' to pull structure items from them.", + howToUse: "Interact with inventories using the Material Grabber item to pull structure items from them.", onEnableCallback: (playerId) => giveActionItem(playerId), onDisableCallback: (playerId) => removeActionItem(playerId) });